all groups > asp.net caching > may 2007
Cache File Dependency - File Change Monitor Fails on Network paths
Posted by pradnya.deshmukh NO[at]SPAM gmail.com at 5/31/2007 6:09:09 AM
I am trying cache file dependency based on UNC paths. It is not
working on UNC shares as file monitoring on UNC paths are failing. It
works fine if dependency file resides on localsystem.
<b> As mentioned, ASP.NET cache dependencies that are based on the
file system rely on Win32 file change ... more >>
asp net cashing issue
Posted by Jaisabari at 5/29/2007 2:12:01 AM
Hi,
here are the problem that we are facing while using the cache feature of
asp2.0
1) In Page load we are loading the table and inserting into the cache
2) On click of the button we are trying to fetch the table from cache but
values are not maintained in the cache
3) It is working fine i... more >>
HTTPContext.Cache does not work on development system
Posted by Bruce Parker at 5/21/2007 5:57:00 AM
We have upgraded our ASP.NET application from 1.1 to 2.0. The Visual Studio
project was changed from url-based to file-based. When we run the
application on the desktop, the cache does not hold onto the values. We can
put a value into the cache and upon immediately retrieving it, it is not ... more >>
.NET 2.0 HttpRuntime.Cache Issues
Posted by mrjaxon NO[at]SPAM gmail.com at 5/17/2007 2:00:02 PM
We are working on migrating an enterprise web application from 1.1 to
2.0 and we have run into a fairly significant issue in regards to the
caching. The application is designed to cache entire pages in memory
using HttpRuntime.Cache and keep them there till they expire (usually
1 - 3 minutes). ... more >>
browser cache interferes with postback
Posted by ajfish NO[at]SPAM blueyonder.co.uk at 5/15/2007 6:25:38 AM
Hi,
In my asp.net 1.1 web application there is a page with a url something
like userinfo.aspx?userid=107 which has some postback buttons on it.
In the GET method (i.e. IsPostBack = false) it fetches some
information about that user and stored it in the session, then in the
postback it uses ... more >>
Page caching and loginview / membership
Posted by vespaboy at 5/8/2007 1:41:17 AM
Hi
My site contains a loginview control on every page to show users they
are logged in. i want to implement a page cache for all other page
content. how would i do this?
using output cache will cause the loginview to be cached which is
clearly not good.
thanks
dan
... more >>
Cache problem
Posted by zino at 5/4/2007 2:04:02 PM
in ASP net 2.0
a function that query/add item to cache:
public function1
.... ... ..
If HttpContext.Current.Cache(myKey) Is Nothing Then
Dim ds As DataSet = functionToCreateDataset.... ...
HttpContext.Current.Cache.Insert(myKey, ds, Nothing)
End If
Return HttpContext.Current.Ca... more >>
|