Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


• What Session State providers are available in ASP.NET?
What are the pros and cons of each?

Answers were Sorted based on User's Feedback



• What Session State providers are available in ASP.NET? What are the pros and cons of each?..

Answer / kiran

1. InProcSessionStateStore-> which stores session state in memory in the ASP.NET worker process (current server)
2. OutOfProcSessionStateStore-> which stores session state in memory in an external state server process
3. SqlSessionStateStore-> which stores session state in Microsoft SQL Server and Microsoft SQL Server Express databases

Is This Answer Correct ?    0 Yes 0 No

• What Session State providers are available in ASP.NET? What are the pros and cons of each?..

Answer / munish

Three of the most important methods in a session state provider are GetItem, GetItemExclusive, and SetAndReleaseItemExclusive. The first two are called by SessionStateModule to retrieve a session from the data source. If the requested page implements the IRequiresSessionState interface (by default, all pages implement IRequiresSessionState), SessionStateModule's AcquireRequestState event handler calls the session state provider's GetItemExclusive method. The word "Exclusive" in the method name means that the session should be retrieved only if it's not currently being used by another request. If, on the other hand, the requested page implements the IReadOnlySessionState interface (the most common way to achieve this is to include an EnableSessionState="ReadOnly" attribute in the page's @ Page directive), SessionStateModule calls the provider's GetItem method. No exclusivity is required here, because overlapping read accesses are permitted by SessionStateModule.

In order to provide the exclusivity required by GetItemExclusive, a session state provider must implement a locking mechanism that prevents a given session from being accessed by two or more concurrent requests requiring read/write access to session state. That mechanism ensures the consistency of session state, by preventing concurrent requests from overwriting each other's changes. The locking mechanism must work even if the session state data source is a remote resource shared by several Web servers.

SessionStateModule reads sessions from the data source at the outset of each request, by calling GetItem or GetItemExclusive from its AcquireRequestState handler. At the end of the request, SessionStateModule's ReleaseRequestState handler calls the session state provider's SetAndReleaseItemExclusive method to commit changes to the data source, and release locks held by GetItemExclusive. A related method named ReleaseItemExclusive exists so that SessionStateModule can time out a locked session by commanding the session state provider to release the lock.

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More ASP.NET Interview Questions

Difference between DataView and DataTable

4 Answers  


Do you know caching feature?

0 Answers  


What is the use of Administration tool in Asp.net 2.0?

2 Answers  


When is the ViewState available during the page processing cycle ?

6 Answers   Siebel,


What is dataset and uses of dataset ?

6 Answers   HCL, TCS,


Explain the purpose of storyboard.targetproperty.

0 Answers  


hai to all. what is the procedure for " web hosting ".If you know please message me at "yoursguna@gmail.com". Thank u...

1 Answers  


Explain how is the asp.net mvc architecture different from others? : asp.net mvc

0 Answers  


Can I stream live content/events?

0 Answers  


Are cookies stored on server or client?

0 Answers  


How to Insert/Add in ASPXgridview

0 Answers   Infosys,


Caching techniques in .NET ?

1 Answers   Microsoft,


Categories