我是 Asp.net 的新手,但我想CellClick
为 asp 的 GridView 实现事件,就像在 windows 应用程序中一样dataGridView1_CellClick()
。
问问题
564 次
1 回答
1
您可以在.aspx
页面中添加一些 jQuery。如果你想在服务器上处理一些东西,你可以从 jQuery 中调用PageMethods.YourServerMethod
(例如SetName
这个代码片段)。SetName
方法定义如下。
<head runat="server">
<title></title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptMgr" runat="server" EnablePageMethods="true"></asp:ScriptManager>
<div id="content" runat="server">
<asp:GridView ID="gridView" runat="server">
</asp:GridView>
</div>
</form>
<script type="text/javascript">
$("#gridView td").click(function () {
PageMethods.SetName("JavaScript!", onSuccessMethod, onFailMethod);
});
function onSuccessMethod(response) { alert(response); }
function onFailMethod() { }
</script>
</body>
在文件后面的代码中:
using System.Web.Services;
...
[WebMethod]
public static String SetName(string name)
{
return "This was called from " + name;
}
于 2012-12-03T10:26:44.233 回答