我有一个默认的按钮设置一个asp.net面板,但点击回车键按钮时永远不会触发。 我搜索因此,对于这个问题,但无法找到工作的任何回应。
我怎样才能得到btnRegister当用户点击Enter键点击?
<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>