我有一个带有默认按钮设置的 asp.net 面板,但是当按下 ENTER 按钮时该按钮永远不会触发。我搜索了这个问题,但找不到任何有效的响应。
当用户点击 ENTER 时,如何让 btnRegister 点击?
<asp:Panel runat="server" ID="pnlCustomer" DefaultButton="btnRegister">
<table width="500px" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="right">
<asp:Button ID="btnBackToProfile" Text="Back To Profile" runat="server" Enabled="false"
onclick="btnBackToProfile_Click" />
</td>
<td align="right">
<asp:Button ID="btnClearnForm" Text="Clear Form" runat="server"
OnClientClick="ClearForm1()" />
</td>
<td align="right">
<asp:Button id="btnRegister" runat="server" onclientclick="document.getElementById('AlertTime').value = GetSeconds();" Text="Continue" OnClick="btnRegister_Click" />
</td>
</tr>
</table>
</asp:Panel>