Vithal Wadje
How can we prevent a browser to cache an .ASPX page?
By Vithal Wadje in ASP.NET on Oct 17 2012
  • Vithal Wadje
    Nov, 2014 4

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

    • 0
  • Vithal Wadje
    Oct, 2012 17


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

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS