2
Reply

How can we prevent a browser to cache an .ASPX page?

Vithal Wadje

Vithal Wadje

Oct 17, 2012
3.9k
0

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

    Vithal Wadje
    November 04, 2014
    0


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

    Vithal Wadje
    October 17, 2012
    0