Button on click method entered on page refresh! - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T03:10:51Z http://stackoverflow.com/feeds/question/939305 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/939305/button-on-click-method-entered-on-page-refresh 0 Button on click method entered on page refresh! test 2009-06-02T12:47:19Z 2009-09-27T06:00:02Z <p>Hi,</p> <p>I have a .net 2.0 application and I can't work out why a button's onclick method is run on page refresh.</p> <p>The exact scenario when this happens is a checkbox is ticked against each item the button is clicked and the onclick mthod processes this item, and the checkbox is cleared. Now when the page is refreshed for some reason the onclick method of the button is entered in to!</p> <p>Any help much appreciated.</p> <p>Thanks alot,</p> http://stackoverflow.com/questions/939305/button-on-click-method-entered-on-page-refresh/939316#939316 0 Answer by Shoban for Button on click method entered on page refresh! Shoban 2009-06-02T12:51:21Z 2009-06-02T12:51:21Z <p>Check the default <strong>Checked</strong> property of the check box. You may be setting it "Checked" on onload. Will be able to help you more if you post the code.</p> http://stackoverflow.com/questions/939305/button-on-click-method-entered-on-page-refresh/944011#944011 0 Answer by test for Button on click method entered on page refresh! test 2009-06-03T10:19:54Z 2009-06-03T10:19:54Z <p>Thanks Shoban,</p> <p>The problem was that the checkbox was checked within the form and when the page was refreshed this caused a postback.</p> <p>I solved this by putting the below line of code at the end of the button click method: Response.Redirect(Request.Url.PathAndQuery);</p>