How many types of session in asp.net2.0

Answers were Sorted based on User's Feedback



How many types of session in asp.net2.0..

Answer / banumathi

three types of session states in asp.net

InProc
OutProc
SqlServer

Is This Answer Correct ?    117 Yes 30 No

How many types of session in asp.net2.0..

Answer / sathish

As mentioned by manumathi.There are three session states:
inproc
sqlserver
stateserver

Is This Answer Correct ?    77 Yes 14 No

How many types of session in asp.net2.0..

Answer / sabeer pasha

Three Types of Session

i) inprocess session
II)out Process session
III) SQl-server session

Inprocess session by default in web.cofig File.
out process is stored at server side.
sql-server session is stored in Database(sql).

sabeer pasha.

Is This Answer Correct ?    52 Yes 16 No

How many types of session in asp.net2.0..

Answer / navin.cp

Three types of Sessions are in .Net
1. In Proc
2. Out Proc
3. State Server/ Sql Server

In proc does not support Web Farming &b Web Gardening while
the other 2 supports.

I dont know why people are saying Web Garden & Web Farming
are the types of session for eg. Prem

Is This Answer Correct ?    50 Yes 16 No

How many types of session in asp.net2.0..

Answer / jigar

two Types:
(1) Session InProc:
INProc
(2) session OutProc:
State Server
Sql Server

Is This Answer Correct ?    32 Yes 5 No

How many types of session in asp.net2.0..

Answer / mallikarjuna

sessions are two types :
they are
1.Inprocess(this is default,and high performence)
2:outprocess
in out proc we have other two types of sessions
they are
*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.

Is This Answer Correct ?    29 Yes 5 No

How many types of session in asp.net2.0..

Answer / rajen

There are three types of session in asp.net 2.0
1.Inproc(In Local process and default one)
2.Stateserver(At differnt Process and need serialised data)
3.Sqlserver(At sql Server and need serialised data)

The latter two are good for working with web farms and web
gardens.

Is This Answer Correct ?    28 Yes 9 No

How many types of session in asp.net2.0..

Answer / 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

How many types of session in asp.net2.0..

Answer / manish pathak

There are two category of Session type:

(1) Inproc : are those which are stored under aspnet_wp.
(2) OutProc : are those which are stored outside aspnet_wp.

- Inproc : This is default session state and it is stored
locally in the memory of asp net worker process.

- OutProc :
(a) StateServer : it is stored outside aspnet_wp & is
managed by window service. Location of that service is
specified by stateConnectionString attribute.
(b) SqlServer : it is also stored outside aspnet_wp &
is managed by Sql Server Database. Location of that database
is specified by sqlConnectionString attribute.

Thanks
Manish Pathak

Is This Answer Correct ?    16 Yes 2 No

How many types of session in asp.net2.0..

Answer / jayant shahi

ASP.Net supports 4 types of sessions
1)in process (InProc)(The Default) Session state exists
within the process the web is using
2)state server (OutProc)Session data is sent to the
configured stateserver service
3)sql server (OutProc)Session data is store in the
configured sql server database
4)custom

InProc
Adv.:
1) Faster as session resides in the same process as the
application
2) No need to serialize the data

DisAdv.:
1) Will degrade the performance of the application if large
chunk of data is stored
2) On restart of IIS all the Session info will be lost

State Server
Adv.:
1) Faster then SQL Server session management
2) Safer then InProc. As IIS restart
won't effect the session data

DisAdv.:
1) Data need to be serialized
2) On restart of ASP.NET State Service session info will be lost
3)Slower as compared to InProc

SQL Server
Adv.:
1) Reliable and Durable
2) IIS and ASP.NET State Service
restart won't effect the session data
3) Good place for storing large chunk of data

DisAdv.:
1) Data need to be serialized
2) Slower as compare to InProc and State Server
3)Need to purchase Licensed
version of SQL Server

Is This Answer Correct ?    14 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

What is a proxy in web service?

0 Answers  


What is Virtual path in ASP.Net

2 Answers   Proteans,


What does occur first in ASP.Net, Authentication or Authorization?

0 Answers   MCN Solutions,


what is Master pages in asp.net? what is the advantages and disadvantages?

3 Answers  


Explain how does asp page work?

0 Answers  






what is advantage of developing in asp.net.why the same can't be developed in Java or other web developemnt tool.what are advantages of developers.

4 Answers   IBM,


# What is the transport protocol you use to call a Web service?

1 Answers  


Trigger syntax in sql2000

1 Answers   Wipro,


Can we have 2 web config files?

0 Answers  


What are validator? Name the validation controls in asp.net? How do you disable them? Will the asp.net validators run in server side or client side? How do you do client-side validation in .net? How to disable validator control by client side javascript?

0 Answers  


Explain exception handling in .net.

0 Answers  


Can you explain what inheritance is and an example of when you might use it?

4 Answers   Siebel Systems,


Categories