Explain the scenario where we go for inpro and outpro session?
Answer Posted / 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 View All Answers
How do you declare static variable?
What is data control in asp.net?
How does the iis work?
What is the difference between equals() and == in c#?
What does asp stand for in asp.net?
What is http post and http get?
What is the maximum number of classes that can be contained in one dll file?
Let's say I have an existing application written using vb6 and this application utilizes windows 2000 com+ transaction services. How would you approach migrating this application to.net?
How to disable cut, copy and paste in TextBox using jQuery in asp.net?
Define globalization and localization.
Why do we need url encoding?
What is an example of an application service provider?
Take a Large textbox allow to type any data. Task 1:display the count of vowels in a lable on key press event of the textbox Task 2:dispaly count of dates in a lable when dates in following foramats:dd/mm/yy , mm/dd/yy , yy/mm/dd. Task3:compare 2 dates and display both are same or not which dates are in dd/mm/yy and mm/dd/yy farmats.
What are the new data controls in asp.net 2.0?
What are the security types in asp.net?