Where can we save cashed data and session data

Showing Answers 1 - 4 of 4 Answers

dotnetDominator

  • Jun 21st, 2006
 

Session and cache data are stored on Web Server. If a State Server or Sql Server is used to Store Session Data then Session data is stored on these server instead of Web Server.

  Was this answer useful?  Yes

samiksc

  • Jul 17th, 2007
 

The 'Location' attribute of the @OutputCache element specifies the location where the cache should be created. Following are the options for saving ASP.Net cache:
1. Any
2. Client
3. Server
4. Downstream
5. None

The session data location is controlled by <sessionState mode=".." /> attribue of sessionState element in web.config. Valid values for this attribute are:
1. InProc
2. StateServer
3. SqlServer
4. Custom
5. Off

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions