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 kinds of object can I store in session state?
It depends on which mode you are using:

- If you are using InProc mode, objects stored in session state are actually live objects, and so you can store whatever object you have created.

- If you are using State Server or SQL Server mode, objects in the session state will be serialized and deserialized when a request is processed. So make sure your objects are serializable and their classes must be marked as so. If not, the session state will not be saved successfully.

What is the difference between DataBinder.Eval() and Eval() methods in ASP.Net?
What is the Scalability?
What is New in ASP.Net 2.0?
What is ADO.Net?
What is the Microsoft Intermediate Language (MSIL)?
How can I read and display Excel files from within my C# application?
Can we run web applications without a Web.config?
How can you provide an alternating color scheme in a Repeater control?
What is the difference between CTS and CLS in ASP.Net?
How to get a cookie?