-
I use "response.redirect()" to redirect to another page, but that target page is still showing what it had before, I have to hit refresh for new values.
how can I make my target page refresh?
or do anything that would solve my problem.
Thanks!
Cerebrate
-
Have you tried a meta tag Refresh?
<META HTTP-EQUIV="Refresh" CONTENT="0;URL=http://www.PageToRefresh.com">
Hope this helps
-
Thanks. but..
thanks for your help, but what I need to know is how to do this in ASP(VBscript). because I cannot call a Javascript function.
is there anything I can do to clear what's is buffer before I redirect new page? will this solve my problem?
-
are you using it as:
Response.Redirect "mynewpage.asp"
?
-
You could do:
<%
Response.Buffer = true
Response.Clear
Response.End
%>