|
-
Jun 22nd, 2000, 03:12 AM
#1
Thread Starter
Lively Member
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
-
Jun 22nd, 2000, 04:53 AM
#2
Hyperactive Member
Have you tried a meta tag Refresh?
<META HTTP-EQUIV="Refresh" CONTENT="0;URL=http://www.PageToRefresh.com">
Hope this helps
-
Jun 22nd, 2000, 10:03 PM
#3
Thread Starter
Lively Member
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?
-
Jun 22nd, 2000, 10:07 PM
#4
Guru
are you using it as:
Response.Redirect "mynewpage.asp"
?
-
Jun 22nd, 2000, 10:10 PM
#5
Hyperactive Member
You could do:
<%
Response.Buffer = true
Response.Clear
Response.End
%>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|