Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to prevent browser cache for some files only in ASP.Net 5?

In the previous version I would do this like in here. But in new version of ASP there is no web.config file, and I believe it should be done in launchSettings.json file.

Basically what I want to do it stop caching app.js file and all .html files from templates folder. How do I do it?

like image 862
Whistler Avatar asked Jan 15 '16 12:01

Whistler


People also ask

What is partial caching in asp net?

Fragment caching does not actually cache a Web Form's code fragments directly; fragment caching refers to the caching of individual user controls (. ascx) within a Web Form. Each user control can have independent cache durations and implementations of how the caching behavior is to be applied.

How can we prevent browser from caching an ASPX page?

Use the SetNoStore() method as follows, in the ASPX page: <%@ Page Language=”C#” %> <% Response. Cache. SetNoStore(); Response.


1 Answers

Note that you're still free to add <meta> tags in your HTML pages for each page you don't want to cache:

<meta http-equiv="cache-control" content="no-cache" />

Also note that if you're deploying to IIS then you still have a wwwroot (or what you specified in project.json) where you can put a web.config files (parsed by IIS).

If you want to do it with configuration then add a Configure() method in your Startup class:

public void Configure(IApplicationBuilder application)
{
    application.Use(async (context, next) =>
    {
        context.Response.Headers.Append("Cache-Control", "no-cache");
        await next();
    });

    // ...
}

Note that if you want to apply that HTTP header only to certain pages you just need to check PathString property of HttpRequest (Request property of HttpContext) or if you need it for every static file (same as above if you want to apply to only some of them) using:

application.UseStaticFiles(new StaticFileOptions
{
    OnPrepareResponse = context =>
    {
        context.Response.Headers.Append("Cache-Control", "no-cache");
    }
};

Which headers you should send to be compatible with browsers you need to support has been discussed on Making sure a web page is not cached, across all browsers.

like image 145
Adriano Repetti Avatar answered Sep 27 '22 17:09

Adriano Repetti