Explain the scenario where we go for inpro and outpro session?

Answers were Sorted based on User's Feedback



Explain the scenario where we go for inpro and outpro session?..

Answer / umamahesh

inpro means in process , acutually sessions variables are
by default store in inpro that means sessions variables are
stored in current process, outproc means sessions variables
are store in sql database.......

Is This Answer Correct ?    7 Yes 2 No

Explain the scenario where we go for inpro and outpro session?..

Answer / aslam

In Proc mode is usefull for small application which can be
hosted on single server. This mode is most common and
default method to store session information. session data
is stored in memory of local web server. it is not ideal
for web farms and web gardens
Out of proc mode is ideal for scalable and highly
avialble application. it supports web farm and web gardens.
session state is held in process called aspnet_state.exe
that runs as a windows service.

Is This Answer Correct ?    5 Yes 0 No

Explain the scenario where we go for inpro and outpro session?..

Answer / tanveer

web Application is statless ,no state is maintained between
browser ans server , many ways are there to maintain state
on server or/and clent ,session is one of the most
important object to maintain state on server side .
Session can be stored on three different physical space,
1)on the same location were the application run i.e. in the
same process in worker process. which is known as inproc
In which form authentication can work and session_end
function does work in global.asax file.

inproc is the fastest way ,
but it gets referesh when iis recycle or restarted and data
lost.

2) out proc is the another way to store session on another
location (server) .


3) sql server state session is storedon sql server data
table

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

Explain how cookies work.

0 Answers  


Out of ASP or ASP.NET which one is stateless?

0 Answers   BirlaSoft,


how to elimainte the similar data from the different tables

0 Answers  


Explain what a diffgram is, and a good use for one?

1 Answers  


How do we access view state value of this page in the next page?

0 Answers   MindCracker,






What are custom user controls in asp.net?

0 Answers  


Types of optimization and name a few ?

3 Answers   Accenture,


What is the Global ASA(X) File?

2 Answers  


What is a user developed application?

0 Answers  


Can two different programming languages be mixed in a single ASMX file?

1 Answers   IBM, Patni, Wipro,


What is the difference between “Web.config” and “Machine.Config”?

0 Answers  


what is state management in ASP.NET

2 Answers   MCN Solutions,


Categories