ASP.Net Programming Question:
Download Job Interview Questions and Answers PDF
Is it possible to prevent a browser from caching an ASPX page?
Answer:
Just call SetNoStore on the HttpCachePolicy object exposed through the Response object's Cache property, as demonstrated here:
<%@ Page Language="C#" %>
<%
Response.Cache.SetNoStore ();
Response.Write (DateTime.Now.ToLongTimeString ());
%>
SetNoStore works by returning a Cache-Control: private, no-store header in the HTTP response. In this example, it prevents caching of a Web page that shows the current time.
<%@ Page Language="C#" %>
<%
Response.Cache.SetNoStore ();
Response.Write (DateTime.Now.ToLongTimeString ());
%>
SetNoStore works by returning a Cache-Control: private, no-store header in the HTTP response. In this example, it prevents caching of a Web page that shows the current time.
Download ASP.Net Interview Questions And Answers
PDF
Previous Question | Next Question |
How does dynamic discovery work? | What does AspCompat="true" mean and when should I use it? |