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...