views:

42

answers:

2

Hi, I have an asp.net web page that displays data that was returned from the database. However, when I attempt to click "Reset" (<input id="btnReset" type="reset" value="Clear" />) the button doesn't do anything.

+3  A: 

The reset button will only erase the data the user entered after the page was rendered. So if you dont make any changes in the page, the reset button wont do anything.

Also, Reset is a client side operation. it wont post-back the page to the server.

NimsDotNet
+1  A: 

you are probably looking for this

<asp:Button id="btnReset" Text="reset it!" runat="server" onclick="btnReset_onClick" />

so you can do stuff in your codebehind

JP Hellemons
I need something that will not trigger validation controls;
user279521
CausesValidation="false"
Morten Anderson