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 asp.net introduction?

0 Answers  


How can we secure the data which is send from client side to server? Like the login id and paasword needs to be authenticated on the server but we cannot send it in plain text into the server.One more thing we are not using the SSL here.

0 Answers   Microsoft,


Is asp.net a language?

0 Answers  


What is the function of the ViewState property?

0 Answers   MindCracker,


What are the major built-in objects in ASP.NET?

0 Answers   MindCracker,






and can u telme how to explain about our job profile if i have 3years of it experiance in dotnet domain and where to start and where to end , and what shoul i tel and what not(can i mention my education ,and family details,......)i am confusiong a lot. can i ask one with your permision, if u have question that u u went tcs interview as 3+years exp so he/she asked tel me about your profile how can u tel and where to stop. please help me as simple as possible i am facing lot in this..............plese can anyone help me i am awaiting for your reply.

1 Answers   TCS,


True or False: A Web service can only be written in .NET?

5 Answers  


what is client-server architecture in .net? and what is 3-tier architecture?

1 Answers  


What is difference b/w Generic List and Arraylist, Generic List Vs HashTable, Generic List Vs No Generic? Pls Explain with example.

2 Answers   Polaris, Syntel,


What is server infrastructure?

0 Answers  


What is a page life cycle? What are the events in a page life cycle?

0 Answers  


Define resource files.

0 Answers  


Categories