If you want to totally flush the page after a postback occurs so that it doesn't fire again, you can Response.Redirect to the same page.
Response.Redirect(Request.Url.AbsoluteUri);
That basically takes your entire querystring and sends the browser back to it, clearing out any Posts in the process. I often do that after a Save() routine to get the page back to a "normal" state. This works nicely too if your Save routine is updating a database, and you've got some UI elements on the page that read from the database, then you don't have to worry about re-loading those elements with the fresh data.
Also, you can add an Extension method to hit this quickly like so:
public static class Extensions
{
public static void Reload(this Page page)
{
page.Response.Redirect(page.Request.Url.AbsoluteUri);
}
}
You then call this method in your code like so:
private void SaveCrap()
{
SavemeBlahBlah(); // save to dbase
this.Page.Reload();
}