Monday, April 20, 2009

Clear Cache in asp.net

it clear cache in memory
write this in aspx.vb or aspx.c# code file
<%@ OutputCache Location="None" VaryByParam="None" %>
------------------------------------------------------

write this at load event of page
Response.Cache.SetCacheability(HttpCacheability.NoCache)

No comments:

Post a Comment