Linked Questions
56 questions linked to/from Disable browser cache for entire ASP.NET website
1 vote
2 answers
4k views
how to disable cache? [duplicate]
Possible Duplicate: asp.net mvc disable browser cache how to disable cache for a method in asp.net mvc3? Problem in IE9 I am saving some data on /home/ page. The page saves data and reload the ...
1 vote
1 answer
3k views
IE div, updatetargetid not refreshing on subsequent requests [duplicate]
I am facing an issue while showing the partial view in div with updatetargetid property of Ajax.ActionLink. This is my controller- [HandleError] public class HomeController : Controller { ...
4 votes
1 answer
3k views
Disable cache in Silverlight HttpWebRequest [duplicate]
My Silverlight4 app is hosted in ASP.NET MVC 2 web application. I do web request through HttpWebRequest class but it gives back a result previously cached. How to disable this caching behavior? There ...
27 votes
2 answers
14k views
How can I disable client side and proxy caching in ASP.NET MVC?
What is the proper (browser agnostic) way to disable page caching in ASP.NET MVC?
10 votes
6 answers
22k views
Prevent back button
I am using Razor on ASP.NET MVC with C#. I am calling an external web page to process a credit card and it returns to me. I then display a receipt. I'd like to prevent them from going back to the ...
16 votes
2 answers
11k views
HttpContext.Response.Cache equivalent in .NET Core?
I'm trying to reproduce something I found here for a previous version of ASP.NET. Basically, I want to be able to disable cache so my client's look to the server for information at all times. I've ...
22 votes
7 answers
5k views
How to update XBAP to latest version on client computer?
I developed a XAML browser application (XBAP) that is embedded within an ASP.NET web page. I am having a problem getting the latest version of the XBAP to update on the client computer. During ...
9 votes
4 answers
11k views
How do I turn off caching for my entire ASP.NET MVC 3 website?
Like the question says, I wanted to know if it's possible to turn off caching on all controllers and actions for my entire site. Thanks!
9 votes
3 answers
46k views
How to clear cache in specified controller in asp mvc? [duplicate]
Possible Duplicate: How to programmatically clear outputcache for controller action method How to clear cache in specified controller? I try to use several approaches: Response....
24 votes
2 answers
21k views
ASP.NET MVC and IE caching - manipulating response headers ineffective
Background I'm attempting to help a colleague debug an issue that hasn't been an issue for the past 6 months. After the most recent deployment of an ASP.NET MVC 2 application, FileResult responses ...
10 votes
4 answers
12k views
Remove multiple forward slashes
I've noticed that with .NET MVC sites, you're able to hit URLs with multiple forward slashes, for example: http://www.example.com//category http://www.example.com//category//product The URL loads ...
4 votes
3 answers
6k views
Back button not requesting asp.net mvc get method
We are facing a specific problem where in on click of backbutton, the default get method is not getting triggered in asp.net mvc any specific solutions ?
12 votes
1 answer
5k views
ASP.NET MVC AntiForgeryToken and Caching
I am currently working on an ASP.NET MVC project and came upon an error that seemed peculiar. In the ASP.NET MVC Templates forms always get an AntiForgeryToken (thus leading me to believe that this ...
2 votes
3 answers
5k views
Disable Caching For A Single JS File Using Web.config
I currently cache everything possible on my site (images, JS, CSS). There is only one JS file that I need to be loaded fresh every single time. How do I omit just one file from caching, using web....
5 votes
1 answer
3k views
Internet Explorer displaying cache data over Ajax Pull with 304 Result
I have a tool that works perfectly fine in Chrome and FF. But with any versions of IE the browser is displaying cache info over doing an Ajax pull to retrieve the data. Here's my setup: I have ...