Button on click method entered on page refresh! - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T03:10:51Zhttp://stackoverflow.com/feeds/question/939305http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/939305/button-on-click-method-entered-on-page-refresh0Button on click method entered on page refresh!test2009-06-02T12:47:19Z2009-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#9393160Answer by Shoban for Button on click method entered on page refresh!Shoban2009-06-02T12:51:21Z2009-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#9440110Answer by test for Button on click method entered on page refresh!test2009-06-03T10:19:54Z2009-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>