Welcome, Guest Ohm namah shivoy
www.faqpanel.com
Home | ASP.Net | C-Sharp | Winforms | MS SQL | AJAX | XML | .Net Training*** | Search
Invite friends 
Extras 
VS Tips & Tricks
Top 10 .Net Tools
Special folders in ASP.Net
VS Find Combobox
 ASP.Net Interview Questions and Answers
What is the difference between an assembly and a namespace in ASP.Net?
Namespaces are logical, whereas assemblies are physical.

A namespace is a logical naming scheme to group related types. Namespaces can contain other namespaces to form a hierarchy. The “fully qualified name” of a type is its namespace followed by its type name, separated by a period (for example, System.Windows.Forms.Button). Type names must be unique within a namespace, but the same type name can be used in different namespaces.

An assembly is a physical deployment scheme to group related types. An assembly can contain one or many namespaces. A namespace can exist in one or many assemblies.

What is a pre-requisite for connection pooling in ASP.Net?
Can you edit data in the Repeater control?
What is the ASP.Net State Service?
Why Session_End is not fired?
Why is ADO.Net serialization slower than ADO?
Explain the System.ComponentModel namespace in .Net Framework Class Library.
What is WYSIWYP?
What is System.Net.Mail?
What are the security measures exist for ASP.Net Remoting in System.Runtime.Remoting?
What does the Initial Catalog parameter define in the connection string?