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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top