Select from following answers:- UseSubmitBehavior property to specify whether a Button control uses the client browser's submit mechanism.
- UseSubmitBehavior property to specify whether a Button control uses Asp.Net postback mechanism.
- UseSubmitBehavior property changes the <input type='submit'> tag to <input type='button'> form.
- All of the above.
- All Above
Above all statements are correct about UseSubmitBehavior property.
By default the value of this property is true.
<asp:Button ID="btn_submit" runat="server" Text="Submit" UseSubmitBehavior ="false/true" />
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator