Asp.net下用JQuery找出哪一个元素引起PostBack
更新时间:2010年06月12日 21:25:15 作者:
在Asp.net webform中,如何找出哪一个按钮触发Button PostBack事件。
先看ASPX:
<!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>Petter Liu demo</title>
<script src="http://img.jb51.net/jslib/jquery/jquery14.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$("input:submit").click(function() {
$("#HiddenField1").val($(this).attr("id")
+ " 引起一个 postback");
});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="Button1" runat="server" Text="Button1" />
<asp:Button ID="Button2" runat="server" Text="Button2" />
<asp:Button ID="Button3" runat="server" Text="Button3" />
<asp:HiddenField ID="HiddenField1" runat="server" />
</div>
</form>
</body>
</html>
然后在Sever端这么写:
/// <summary>
/// Handles the Load event of the Page control.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
/// <remarks>Author Petter Liu http://wintersun.cnblogs.com </remarks>
protected void Page_Load(object sender, EventArgs e)
{
Response.Write(HiddenField1.Value);
}
很简单的CODE.
希望这篇POST对您有帮助。
复制代码 代码如下:
<!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>Petter Liu demo</title>
<script src="http://img.jb51.net/jslib/jquery/jquery14.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$("input:submit").click(function() {
$("#HiddenField1").val($(this).attr("id")
+ " 引起一个 postback");
});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="Button1" runat="server" Text="Button1" />
<asp:Button ID="Button2" runat="server" Text="Button2" />
<asp:Button ID="Button3" runat="server" Text="Button3" />
<asp:HiddenField ID="HiddenField1" runat="server" />
</div>
</form>
</body>
</html>
然后在Sever端这么写:
复制代码 代码如下:
/// <summary>
/// Handles the Load event of the Page control.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
/// <remarks>Author Petter Liu http://wintersun.cnblogs.com </remarks>
protected void Page_Load(object sender, EventArgs e)
{
Response.Write(HiddenField1.Value);
}
很简单的CODE.
希望这篇POST对您有帮助。
相关文章
ASP.NET MVC5+EF6+EasyUI后台管理系统 微信公众平台开发之资源环境准备
这篇文章主要介绍了ASP.NET MVC5+EF6+EasyUI后台管理系统,微信公众平台开发之资源环境准备,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2016-09-09
ASP.NET Core WebApi中使用FluentValidation验证数据模型的方法
这篇文章主要介绍了ASP.NET Core WebApi中使用FluentValidation验证数据模型的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2019-01-01
asp.net gridview的Rowcommand命令中获取行索引的方法总结
asp.net gridview的Rowcommand命令中获取行索引的方法总结,需要的朋友可以参考下。2010-05-05


最新评论