This is a discussion on How to Store and Retrieve the values in server side caches in ASP.NET? within the ASP and ASP.NET Programming forums, part of the Web Development category; How to Store and Retrieve the values in server side caches in ASP.NET?...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Hi.. you can store & retrieve the values as below.. Objective: Store and Retieve caches in ASP.NET Store values to cache ---------------------- Response.Cache.SetExpires(DateTime.Now.AddYears(1) ); Cache[cachename] = cachevalue; Retrieve values from cache --------------------------- strCache=Cache.Get(cachename).ToString(); |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Client side JavaScript and and Server side Java Script | sathian | HTML, CSS and Javascript Coding Techniques | 2 | 11-09-2007 10:30 PM |
| How do I retrieve the values from the URL? | Pvinothkumar | HTML, CSS and Javascript Coding Techniques | 1 | 09-13-2007 06:30 AM |
| difference between Client side JavaScript and and Server side Java Script? | Sundaram | HTML, CSS and Javascript Coding Techniques | 1 | 09-05-2007 11:46 AM |
| how to store and retrieve data from cookies | hanusoftware | ASP and ASP.NET Programming | 1 | 08-09-2007 07:17 AM |
| Store and Retrieve the values in cookies in ASP.NET | oxygen | ASP and ASP.NET Programming | 0 | 07-20-2007 12:23 AM |