Here is my button:
protected void Button_Click(object sender, EventArgs e)
{
...//things it does
}
When I update the page, google chrome (for ex) asks me if I want to redo the action above. Lay people will press continue and the action is gonna happen, but it cant happen. How can I clear this action from “memory” for it don’t happens again?
thanks a lot!
After you have done your processing in the button click event you can then do a Response.Redirect back to the same page.