How many types of session in asp.net2.0
Answer Posted / nizath ali
There are two main categories of session in asp.net2.0,
(1) Session InProcess:
InProc
(This is default in web.cofig file and high performence.)
(2) Session OutProcess:
State Server
Sql Server
(These out proc is useful whethr the infrmation is
maintained in between to servers that time only we can use
this sessions.)
Simply three types of session in asp.net2.0,
i)InProc
ii)State Server
iii)SQL Server
Regards,
Nizath Ali.U
| Is This Answer Correct ? | 22 Yes | 4 No |
Post New Answer View All Answers
Explain client side state management system.
Explain some of the major built-in objects in asp.net
Hello, Using Visual Studio 2005 (VB) I am working to create a Web Site implementing the following: Within a gridView I have placed a dropdownlist control with a DataSourceID="SDSLkupList". SDSLkupList is a sqlDataSource used to store a lookup list for dropdownlist translation from ID to text. SDSLkupList contains the translation text and other fields related to the dropdown selection ID. (Thought it would be efficient to get everything at the same time.) I would like to provide the user the ability to select from the dropdownlist and, based on the selection, use labels to list related columns stored on the SDSLkupList in separate gridView columns. I have read that SqlDataSources are not meant to be used for individual controls. Since SDSLkupList contains all related information, is there a way to do a find using the dropdownlist selectedValue? (I was not able to discover one.) Otherwise, what should I use? It would need to set the labels on the gridView DataRowBound event as well as the SelectedIndexChanged events. Has anyone done this? Any help would be appreciated. Thanks in Advance. Neal
What is the difference between viewstate and hidden field in asp.net?
How will you load dynamic assembly? How will create assesblies at run time?
What are the asp.net 2.0 features?
Explain the steps to be followed to use passport authentication.
How does the cookies work in asp.net?
What is server side session?
i have 3+ exp in .net? i am going interview now but they asked me do you know any TOOL? which tool will i study please refer me?
How would ASP and ASP.NET applications run at the same time on the same server?
Is asp.net mvc still used? : Asp.Net MVC
How can we identify that the Page is Post Back?
Which platform does Microsoft .NET use for exchanging data between applications?
What is the difference between abstract class vs interface? Can give me the real time examples?