繁体中文
设为首页
加入收藏
当前位置:.Net技术首页 >> Asp.Net开发 >> ASP.NET 2.0 - Enter Key - Default Submit Button

ASP.NET 2.0 - Enter Key - Default Submit Button

2007-09-15 08:00:00  作者:  来源:互联网  浏览次数:0  文字大小:【】【】【
简介:网页开发中最烦人的事情之一就是为表单处理"Enter key" ,"Enter key"已经成为用户提交表单的偏好。虽然我们为用户提供了提交按钮,但是最简单也是最直接的方式仍然是:输入文字,然后回车完成提交 ASP.NET 2.0中...

网页开发中最烦人的事情之一就是为表单处理"Enter key" ,"Enter key"已经成为用户提交表单的偏好。虽然我们为用户提供了提交按钮,但是最简单也是最直接的方式仍然是:输入文字,然后回车完成提交

ASP.NET 2.0中为此提供了很好的解决方法。只需要将"defaultbutton"属性指定到想要引发事件的按钮控件的ID上就可以了。

在表单级别和面板级别( 标记)均可以指定"defaultbutton"。当表单和面板中同时指定了defaultbutton,则如果在面板中触发了"Enter key",则执行面板中的

下面的实例代码中有一个表单和4个面板,报单和面板中都有按钮。情各位注意:在文本框中回车后会触发哪些按钮的事件

The corresponding, sample events for the button clicks are

protected void Button1_Click(object sender, EventArgs e)

{

Response.Write(Button1.Text);

}

protected void Button2_Click(object sender, EventArgs e)

{

Response.Write(Button2.Text);

}

protected void Button3_Click(object sender, EventArgs e)

{

Response.Write(Button3.Text);

}

protected void Button4_Click(object sender, EventArgs e)

{

Response.Write(Button4.Text);

}

protected void btn1_Click(object sender, EventArgs e)

{

Response.Write(btn1.Text);

}

protected void Button5_Click(object sender, EventArgs e)

{

Response.Write(Button5.Text);

}

原文:http://forums.asp.net/thread/1270048.aspx

原文:http://forums.asp.net/thread/1270048.aspx

代码下载

实在不知道"Entry key"应该如何翻译,请各位指教。

谢谢

责任编辑:admin
相关文章