Aspx.net Add sifting control id meta tag
1 answer
<META> in the order you specified damage the xhtml organization of the document, Try this:
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE"/>;
(accent on closing slash). It is also recommended to use ASP.Net @OutputCache directive
or something like this:
<%
Response.CacheControl = "no-cache";
Response.AddHeader("pragma", "no-cache");
Response.AddHeader("cache-control", "no-cache");
%>
0
a source to share