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 SortedList Object
Why is ADO.Net serialization slower than ADO?
What is Dataset and Diffgram?
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?
Where are shared assemblies stored?
Which one is the process dependent session in ASP.Net?
What are three test cases you should go through in unit testing?
How do you secure your configuration files to be accessed remotely by unauthorized users?
Is there a TextArea in ASP.Net?
What is Command Object in ADO.Net?