日期:2014-05-17  浏览次数:20367 次

为什么这么简单的一个页面,按回车会自动刷新?
前台是这个样子的,就放了一个textbox和button,但是我的后台并没有写任何东西(一句代码都没写),为什么用浏览器访问的时候,填好了textbox之后,随手按一下回车,页面就会刷新,求解??新手不懂


<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="commitButton.WebForm1" %>

<!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 runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
        <asp:Button ID="Button1" runat="server" Text="Button" />
    </div>
    </form>
</body>
</html>

------解决方案--------------------

<script type="text/javascript">
document.onkeydown = function() {
    var evt = window.event 
------解决方案--------------------
 arguments[0];
    if (evt && evt.keyCode == 13) {
        if (typeof evt.cancelBubble != "undefined")
            evt.cancelBubble = true;
        if (typeof evt.stopPropagation == "function")
            evt.stopPropagation();
    }
    return false;
}
</script>


漏了个 return