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

How can you change a Master page dynamically in which event of page life cycle?

2 Answers   Fulcrum Logic,


what is the Difference between Dim Object as object AND dim obj as myform?

1 Answers   Microsoft,


What are HTTP handlers in ASP.NET?

0 Answers   MindCracker,


What benefit does your code receive if you decorate it with attributes demanding specific Security permissions?

2 Answers  


What property must you set, and what method must you call in your code, in order to bind the data from some data source to the Repeater control?

4 Answers  






What do you mean by query string?

0 Answers  


what is ienumerable interface?

1 Answers  


Trigger syntax in sql2000

1 Answers   Wipro,


Differentiate session and cookie

1 Answers  


hi i am varinder. i am very eager to learn ASP.net in C#. i am beginer to it. i have refer some books but i found it tuff to understand. their language is tuff. So please tell me the best site or best book to learn ASP.net in C#. i will be very thankful. Varinder

1 Answers  


What are the different types of caching ?

1 Answers  


Any body Having SHAREPOINT Material plzzz? please material to send prasad.k12@gmail.com

0 Answers  


Categories