booboo0912
Programmer
Hello! I put the following at the top of my page (from what I was able to find in older treads, this was one recommendations to prevent caching problems), before the <html> tag:
<%
Response.Buffer = "True"
Response.Expires = 0
Response.ExpiresAbsolute = Now() - 1
Response.CacheControl = "private"
%>
but I'm getting the error, "object expected" on the Response.ExpiresAbsolute = Now() - 1 line.
Any idea why? I'm using Javascript instead of VB...could it be the "Now()" ??
Thanks in advance!!
<%
Response.Buffer = "True"
Response.Expires = 0
Response.ExpiresAbsolute = Now() - 1
Response.CacheControl = "private"
%>
but I'm getting the error, "object expected" on the Response.ExpiresAbsolute = Now() - 1 line.
Any idea why? I'm using Javascript instead of VB...could it be the "Now()" ??
Thanks in advance!!