Answer Posted / braj bhasker singh
Four Types of Session Types-
1. InProc mode- which stores session state in memory on the
Web server. This is the default.
2.StateServer mode- which stores session state in a
separate process called the ASP.NET state service. This
ensures that session state is preserved if the Web
application is restarted and also makes session state
available to multiple Web servers in a Web farm.
3.SQLServer mode- stores session state in a SQL Server
database. This ensures that session state is preserved if
the Web application is restarted and also makes session
state available to multiple Web servers in a Web farm.
4.Custom mode- which enables you to specify a custom
storage provider.
5. Off mode- which disables session state.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is the exact purpose of http handlers?
Hi this is the coding for adding data in to an xml table
i want the coding for update and delete
Try
Dim emp_xml_doc As New XmlDocument
If
System.IO.File.Exists(Server.MapPath("emp.xml")) Then
emp_xml_doc.Load(Server.MapPath("emp.xml"))
Dim myrow_element As XmlElement
myrow_element =
emp_xml_doc.CreateElement("EmpDetails")
Dim str As String
str = "
What is web configuration file and how to use in web application
i develop a web application and i gave security setting i.e autherization and athentication now it work properly on my local system , now question is ,is this security setting ie autherization and athentication which i gave in web.config will it be enough strong to secure my application on internet or i have to use some 3rd party tool or software to get security .if yes --how ? if no--what is the alternate?
What is a postback in asp net?
Explain how is the asp.net mvc architecture different from others? : asp.net mvc
What are the navigation ways between pages available in ASP.NET?
What is the benefit of WebAPI over WCF?
How does exception management works in ASP.NET?
is there any third party tools are using in .net technologies? what are there ? give me the brief introduction?
Does web services support data reader like pom project?
Explain the server control events of asp.net ?
How to Insert/Add in ASPXgridview
What are the page life cycle events?
I have created a configuration setting in my web.config and have kept it at the root level. How do I prevent it from being overridden by another web.config that appears lower in the hierarchy?