previous page

  • Thread starter Thread starter Jarod_24
  • Start date Start date
J

Jarod_24

How to i redirect the user to the previous accessed page.

I tried the following and that didn't work

Response.Redirect( Request.UrlReferrer.ToString )


Would this also include any of the variables ( ?ID=4&s=0 ) that was with the
url?
 
If you don't mind a link and using javascript you can do something like:

<a href="javascript:void(0);" onclick="javascript:history.back(1);">Back</a>

-Stanley
 
Stanley said:
If you don't mind a link and using javascript you can do something like:

<a href="javascript:void(0);"
onclick="javascript:history.back(1);">Back said:

C'mon!
There's gotta be a way to do this without resorting to Java(Script)
 
Back
Top