How can we prevent a browser to cache an .ASPX page?
Vithal Wadje
A82. Use the SetNoStore() method as follows, in the ASPX page: <%@ Page Language=”C#” %> <% Response.Cache.SetNoStore(); Response.Write (DateTime.Now.ToLongTimeString ());