Hello,
I am trying to dump the cache on my home page. that when I pass a value w=1
but it's not working any ideas?
<%@ Page Language="VB" Debug="true" ContentType="text/html" ResponseEncoding="iso-8859-1" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<%@ OutputCache Duration="3600" Location="Server" VaryByParam="none" %>
<%
if request.QueryString("w")="1" then
Dim path As String
path="/default.aspx"
HttpResponse.RemoveOutputCacheItem(path)
end if
%>