vote up 0 vote down star

Hi,

I have a .net 2.0 application and I can't work out why a button's onclick method is run on page refresh.

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!

Any help much appreciated.

Thanks alot,

flag
Can you provide some code? The ASP would be useful to see what events you have wired up where. Also any code you may be using to bind your checkbox, etc. – Robin Day Jun 2 at 12:49

2 Answers

vote up 0 vote down

Check the default Checked 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.

link|flag
vote up 0 vote down

Thanks Shoban,

The problem was that the checkbox was checked within the form and when the page was refreshed this caused a postback.

I solved this by putting the below line of code at the end of the button click method: Response.Redirect(Request.Url.PathAndQuery);

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.