Click to See Complete Forum and Search --> : how to make a page refresh?
Cerebrate
Jun 22nd, 2000, 03:12 AM
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
compuGEEK
Jun 22nd, 2000, 04:53 AM
Have you tried a meta tag Refresh?
<META HTTP-EQUIV="Refresh" CONTENT="0;URL=http://www.PageToRefresh.com">
Hope this helps
Cerebrate
Jun 22nd, 2000, 10:03 PM
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?
Clunietp
Jun 22nd, 2000, 10:07 PM
are you using it as:
Response.Redirect "mynewpage.asp"
?
compuGEEK
Jun 22nd, 2000, 10:10 PM
You could do:
<%
Response.Buffer = true
Response.Clear
Response.End
%>
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.