Tagged Questions

5
votes
1answer
122 views

asp.net cache within httpcontext

I want to cache objects being pulled from a database that do not often get modified, because every time the page loads nearly 2000 items are selected, causing a noticable performance issue during page ...
3
votes
2answers
464 views

How to architect a web service cache in c#

I'm working on a web service to read data from a 3rd party feed, modify it a little and store it, then return it to my clients. It only needs to update from the 3rd party site periodically. It will be ...
2
votes
1answer
52 views

Using GlobalFilters to cache invalidation is a good idea?

I am using ASP.NET MVC and EF. To do cache invalidation I override the SaveChanges method and every time that SaveChanges is called, I update a field in database to flag that something changed.(I am ...
2
votes
2answers
584 views

Looking for a C# cache manager [closed]

I'm searching for a good cache manager for generic objects. I'm using C# with ASP.NET. I want to use System.Web.Cache. So I want a cache manager that will care about the caching and implement ...
2
votes
1answer
550 views

Why does using ASP.NET OutputCache keep returning a 200 OK, not a 304 Not Modified?

i have a simple aspx page. Here's the top of it:- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Foo.aspx.cs" Inherits="Foo" %> <%@ OutputCache Duration="3600" ...
1
vote
1answer
250 views

ASP.NET Cache-Control changes on server

I have ASP.NET MVC action filter that sets the cache-control header of the response. It all works fine except when I publish it to the web server. When I'm running it through localhost I get the ...
1
vote
1answer
191 views

Reporting Services | Stop Caching

got a really fun one from my boss today. We have an asp website which uses a Microsoft.Reporting.WebForms.ReportViewer component and everything is lovely. However if the browser (currently testing ...
1
vote
5answers
537 views

Most Efficient Way Of Clearing Cache Using ASP.NET

I am building an ASP.NET/Umbraco powered website which is very custom data driven via entity framework, we are having to cache quite a lot of the data queries (For example searches by keyword) as ...
1
vote
1answer
399 views

Cache-Control HTTP header does work properly

I am having issue with cache-control. I have one IIS website with multiple host headers. When you browse site number 1 then cache will be set for this site, when you open browser again and go to 2nd ...
1
vote
2answers
134 views

How do you store Javascript as HTML code in a Web Site

I use Web Forms and Asp.Net with MS SQL. For my Web Site I need store these codes belove, maybe others in future: Google Analytic Code Some JavaScript codes HTML Footer and Header for my template. ...
0
votes
1answer
45 views

Overwrite web.config setting

Environment: IIS 7, .Net 4.0 In web.config of our application, it has this section: <system.webServer> <httpProtocol> <customHeaders> <add name="cache-control" ...
0
votes
0answers
36 views

No impact on existing label during CacheItemRemovedCallback

In Cache.Insert method, I have onRemoveCallback delegate to update the existing label text. On debugging the code, delegate got called; but label didn't refresh. Any reason? ...
0
votes
1answer
126 views

Does cache-control:private without expiration data imply “expire immediately”?

Most content I've observed being served from ASP.NET has only a Cache-Control: private header, with no Last-Modified or Etag header. I've also observed that browsers never seem to cache this content, ...
0
votes
1answer
243 views

Get Asp.net/iis to set Cache-control:max-age for static files

We have a Webforms project with url routing. I have defined exception routes for images and css-files as routes.Add("IgnoreImages", new Route("img/{*pathInfo}", new StopRoutingHandler())); ...
0
votes
1answer
73 views

Convert HttpContext current cache to LINQ

I am trying to find a specific key within the current Cache. Problem is, my key in the cache are composite, and I would like to run like a Linq Where expression. Is this possible? if so - how? does ...
0
votes
1answer
217 views

ASP.NET Disabling Page Level Cache Problems/Dangers?

Basically, the reason I am disabling the cache is because I have DevExpress ASPxGridViews, which work great for filtering, sorting, etc. but the client is working with large amounts of data and has ...
0
votes
1answer
129 views

ASP.NET System.Web.UI.Page Cache Key Dependencies, How to?

How do I setup caching for a Page in ASP.NET and give it a cache key dependency? I am familiar how to do this with a UserControl, I set a Partial Caching attribute and then set this.CachePolicy = ...
0
votes
1answer
333 views

I suspect my website is sending wrong HTTP Headers

This has been bugging me for a while now. Whenever I try to share my website link on Facebook or another link-sharing site, the link-sharing site either removes the URL (like it doesn't recognize it ...
0
votes
1answer
277 views

How to add Cache-Control: no-store in authenticated pages in DotNetNuke 5.4.4?

I would like to know what is the best way to include Cache-Control: no-cache, no-store in authenticated pages in DotNetNuke 5.4.4. In fact, I want to prevent caching in IE6/7 and FireFox as well. ...
0
votes
3answers
675 views

How can I progrmatically make clear cache?

In my aplication (ASP.NET + c# ) when user goes to a aspx page , I need to clear cache first. Does anyone have any idea how can I progrmaticaly make clear cache on an aspx page, or in it's code ...
0
votes
2answers
147 views

Does the ASP.NET OutputCache directive actually cache or just set some Response properties?

When someone uses the OutputCache directive in an ASP.NET WebForms/MVC application, does it actually do any caching server-side, like using the Cache or does it only setup some properties in the ...
0
votes
1answer
227 views

How does one set multiple cache-control directives in ASP.NET

I have to have several certain cache-control directives set on an ASP.NET page in order to pass a Hailstorm security scan. For example, it wants me to have Cache-control: no-cache="set-cookie" in ...