reload page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Newbie question:
After a click event, if I want to reload the page and controls, is the best course to response.redirect("mycurrentpage.aspx") where mycurrentpage is my current page?
What if, after a click event, I want to return the user to their last, previous page (out of more than one possible). Do I need to save that page name somewhere in a session variable?
Thanks
 
You can do that, or you can reponse.write a MetaData no cache directive for
the browser to automatically reload the page.

As far as history is concerned, you can either use a session variable or
write a javascript function for client side.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Time flies when you don't know what you're doing

Buz said:
Newbie question:
After a click event, if I want to reload the page and controls, is the
best course to response.redirect("mycurrentpage.aspx") where mycurrentpage
is my current page?
What if, after a click event, I want to return the user to their last,
previous page (out of more than one possible). Do I need to save that page
name somewhere in a session variable?
 
thank you

One Handed Man ( OHM - Terry Burns ) said:
You can do that, or you can reponse.write a MetaData no cache directive for
the browser to automatically reload the page.

As far as history is concerned, you can either use a session variable or
write a javascript function for client side.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Time flies when you don't know what you're doing


best course to response.redirect("mycurrentpage.aspx") where mycurrentpage
is my current page?
previous page (out of more than one possible). Do I need to save that page
name somewhere in a session variable?
 

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