Keeping Values of a Form

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

Guest

Hi Guys,

I'm switching between Webpages using "Server.Transfer()" in a buttons Called
"Continue >>" and "<< Back", but when going back to the previous form the
values in the textboxes are lost !! How can I keep them without using
Sessions?


Thanks Guys,
 
Hi Badis,

If you are orrite with having the page from the Browsers cache when back
button is pressed, just add the following javascript on the client side event
of the Back button.

history.go(-1);


Regards,
Hameer Saleem
 
Back
Top