I am very new to ASP.NET. I just learned what postbacks are and I am trying to handle them, however, I would like to know if there is a way to "reset" the page. As in go to the original state of the page, before any postbacks were handled.
This will clear out any text boxes, check boxes, etc. In effect clearing any and all cache. Make it look like the user just opened the page fresh for the first time. Would like it to be a button called "reset" or "Start over".
Once you’re done with your data, I would simply suggest doing a
Response.Redirect("~/Example.aspx")to the same page. That way you’re not passing the ViewState back to the page.Example.aspx
Example.aspx.cs