大家好我想知道,如果在我的login.aspx页面中有两个按钮login
和cancel
现在我按下我键盘的输入键默认选择取消按钮但是我想在登录时设置它我将如何操作?
答案 0 :(得分:0)
<asp:Panel>
控件具有DefaultButton
属性,您可以为其指定默认按钮控件的ID。
考虑在面板中包装您的内容,并将面板的DefaultButton
属性指定为login
。
答案 1 :(得分:0)
您可以设置表单的defaultbutton属性:
<asp:Form runat="server" id="form1" defaultbutton="idofloginbutton">
...
</asp:Form>