首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

为啥这么简单的一个页面,按回车会自动刷新

2013-11-14 
为什么这么简单的一个页面,按回车会自动刷新?前台是这个样子的,就放了一个textbox和button,但是我的后台并

为什么这么简单的一个页面,按回车会自动刷新?
前台是这个样子的,就放了一个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

热点排行