Mallik Raghu

Mallik Raghu

  • NA
  • 24
  • 0

page_reload

Jan 30 2008 11:31 PM

hi all,
I have a button named "Reset" on my form.If it is clicked then all values on the page should be cleared(till this it is ok) and page should be reloaded(how??).if  the button is clicked the page_load event must be fired?

protected void btnReset_Click(object sender, EventArgs e)
    {
        ResetFormControlValues(this); //for clearing the fields
        Page_Load(sender,e);
    }

This is not working...how to make the page reload????

thanks in advance...


Answers (1)