| Caching problem (4 replies) |
| ASPFriends.com 'aspngcache' list |
| Hi all I am testing the OutputCache and everything works fine on my develop machine. %@ OutputCache Duration "10" VaryByParam "*" % .... BUT, moving the files to another server and another URL, does everything but the OutputCache work. I got no errorcodes, everything seems to work, but the page is clearly not cached. Any suggestions what to do. (IIS settings,web.config params ??) Thanks /Per Gullb... |
|
| Session vars verse cache (4 replies) |
| ASPFriends.com 'aspngcache' list |
| Are people still using session variables to hold information specific to a user. I'm just starting to build out the user access for a site. I built a User Object and thought I would put it in cashe until the information is needed. Seems the Cache is more like an Application variable. Each user that got into the system overwrote the pervious object. Was wondering what other people are doing? |
|
| caching the SqlCommand Object (3 replies, VIP) |
| ASPFriends.com 'aspngcache' list |
| Hi all, I have some interesting behavior, and was wondering if you can help me. I'm caching SqlCommand objects (just the commandText and command parameters). Then when I want to use a SqlCommand, I just pull it from the Cache, add the connection , and loop through the parameters collection to add the values. Then i perform a cmd.Execute and close my connection. What I'm finding is that the command... |
|
| Localization and cache (6 replies) |
| ASPFriends.com 'aspngcache' list |
| Does custom output caching in ASP.NET allow me to cache on the basis of the culture of the page? e.g. if I have URLs like article.aspx?id 123, I can cache for each value of the id parameter, but can I also split the caching to cover each copy of the page in the languages supported by article.aspx (e.g. if article.aspx uses Thread.CurrentCulture to display different content)? Ollie ollie@cornes.org... |
|
| OutputCache not working (6 replies, VIP) |
| ASPFriends.com 'aspngcache' list |
| My OutputCache does not seem to be working: aspx file %@ Page language "c#" Codebehind "WebForm1.aspx.cs" AutoEventWireup "false" Inherits "Dev.WebForm1" % %@ OutputCache Duration "10" VaryByParam "none" % HTML body form id "Form1" method "post" runat "server" % Response.Write(DateTime.Now.ToString()); % /form /body /HTML I have also copied an entire example from the quickstarts word for word and ... |
|
| using XML in Cache... (3 replies) |
| ASPFriends.com 'aspngcache' list |
| Moved from [aspngdata] to [aspngcache] by Charles M. Carroll darthcarroll@asplists.com Has anyone read Dino Esposito's article in Dec 2001 MIND about using XML files as Caches? Looks very interesting....does anyone agree that it is a very scalable solution? Is caching data in XML files slower than using a standard Cache? Francesco Get your FREE download of MSN Explorer at http://explorer.msn.com/i... |
|