Reload window and do PostBack

  • Thread starter Thread starter Randy
  • Start date Start date
R

Randy

Hello,
I'm trying to figure out how best to implement a Reset button which will
reload the aspx page (do a PostBack) which will reload the page from an
Oracle database (in the PostBack section).
Can someone tell me how best to do this?

Thanks :)
 
Create a asp:button with runat=server and some Id. Check the Button Id in
PostBack and then change DB accordingly.
 
Actually, I've got the page working fine...populates the page from an Oracle
database. I want to hook up a Reset button that will reload the page, but I
don't know how to make it do a PostBack to the code in the
if(!IsPostBack) section will get executed.
 
Back
Top