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 does it mean to sign an assembly?
.NET uses digital signatures to verify the integrity of an assembly. The signatures are generated and verified using public key cryptography, specifically the RSA public key algorithm and SHA-1 hash algorithm. The developer uses a pair of cryptographic keys: a public key, which everyone can see, and a private key, which the developer must keep secret.

To create a strong-named assembly, the developer signs the assembly with his private key when building the assembly. When the system later loads the assembly, it verifies the assembly with the corresponding public key.

What is garbage collection?
What is difference between ExecuteReader, ExecuteNonQuery and ExecuteScalar?
What is Command Object in ADO.Net?
Can I run my application which was built with a newer .Net Framework ( for example .Net 2.0, .Net 3.0, .Net 3.5 ) on a machine that has a lower .Net Framework ( for example .Net Framework 1.1 ) installed?
Can you run an ASP.Net web application without using web.config file?
What is Cross Page Posting? How is it done?
What is a formatter?
How to convert a DataTable to a DataReader?
what are the diffrences between windows application and windows service?
How many types of Validation Controls are provided by ASP.Net?