T
Tim
I'm building a .NET C# web application using web caching.
The Cache class only works when I'm using an aspx page. I
want this Caching logic to be in its own class file (.cs)
in another project so other developers can use it too.
I'm instaintiating the Cache class like this but the
methods do not work like this.
Cache webCache = new Cache();
webCache.Add(.......)
Does web caching have to happen in aspx pages only?
-Tim
The Cache class only works when I'm using an aspx page. I
want this Caching logic to be in its own class file (.cs)
in another project so other developers can use it too.
I'm instaintiating the Cache class like this but the
methods do not work like this.
Cache webCache = new Cache();
webCache.Add(.......)
Does web caching have to happen in aspx pages only?
-Tim