You can use tag
<%@ OutputCache Duration='0' Location='None' VaryByParam='none' %>
or
VB.NET
Response.Cache.SetCacheability(HttpCacheability.NoCache)
C#
Response.Cache.SetCacheability(HttpCacheability.NoCache);
You can use tag
<%@ OutputCache Duration='0' Location='None' VaryByParam='none' %>
or
VB.NET
Response.Cache.SetCacheability(HttpCacheability.NoCache)
C#
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Share with