在输入

时间:2017-05-29 01:23:57

标签: asp.net vb.net webforms

现在我必须点击Login按钮才能将表单发送到服务器。

我想在密码字段上按 Enter 键。

这是代码:

<%@ Page Language="VB" AutoEventWireup="False" CodeFile="Default.aspx.vb" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>Login Page</title>
        <SCRIPT language="javascript" src="commonpages/js/Utility.js" type="text/javascript"></SCRIPT>
        <script>
        function GoBtn_ServerClick(oButton, oEvent) {
        }
        </script>
</head>
<body style="background-color:AliceBlue">
    <div id="main0">
    <!--<input id="auto" type=button value="Print test" onclick="Printtest();">-->
        <table width=800 align=center height=600px style="background-color:  AliceBlue;">
            <tr>
                <td width=25></td>
                <td width=750 align=center><form runat="server">
                <table ><tr><td colspan="2">
                </td></tr>
                <tr><td align=left>
                Login:</td><td align=right>
                <input id="login" runat=server type=text style="width: 100px"/></td>
                </tr><tr><td align=left>
                Password:</td><td align=right>
                <input id="pw" runat=server type=password style="width: 100px"/>
                </td></tr>
                <tr><td align=center colspan=2>
                <input type=button runat=server id=GoBtn value=Login style="width: 60" CausesValidation="False" />
                </td></tr></table></form>
                </td>
                <td width=25></td>
            </tr>
        </table>
    </div>
</body>
</html>

我在Stack Overflow中搜索过类似的问题,但是他们展示了使用ASP控件而不是HTML控件的示例。

1 个答案:

答案 0 :(得分:1)

在GoBtn上将'type = button'更改为'type = submit',按Enter键时会触发它。

或者,您可以在密码字段中按Enter键时使用jQuery“点击”按钮:

$(document).ready(function(){
    $('#pw').keypress(function(e){
      if(e.keyCode==13)
      $('#GoBtn').click();
    });
});