|
-
Nov 13th, 2000, 06:06 PM
#1
Thread Starter
Member
I want to redirect to the previously requested page with ASP and not to a specific page. Is there APS code to do that?
Ofcourse I could send this as a querystring but the above would be easier.
Thanks
A mind is like a parachute, it has to open to let it work
www.2beesoft.com for Icon Manager with over 20.000 free icons
VB6 Ent. SP4, ASP, W2000/W98
-
Nov 13th, 2000, 09:43 PM
#2
You can have a little script to go back:
Code:
<SCRIPT Language=JavaScript>
window.history.back
</SCRIPT>
-
Nov 14th, 2000, 12:17 PM
#3
I have had luck with the following:
<input type="button" name="Back" value="Back" onclick="history.go(-1)">
-
Nov 14th, 2000, 12:52 PM
#4
In ASP you could do something like:
Response.Write "<P><A HREF=""" & Request.ServerVariables("HTTP_REFERER") & """>Link to previous page</A></P>"
Paul
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
|