Page reload

  • Thread starter Thread starter Mike Voissem
  • Start date Start date
M

Mike Voissem

I'm lost with how to do this. I'm trying to reload a page after a user
completes their transaction and clicks on a button to create another
transaction. I want all the fields on the form to be re-initialized so the
user may enter another transaction. Do I need to initialize all of the
fields on the postback, or is there an easier way?
Thanx,
Mike
 
In the button click handler, couldn't you just response.redirect to the
page you're on? That should make the resulting page not a postback,
and the fields should be re-initialized.
 
Back
Top