我在 VS2013 中创建了一个新的 WebForms 应用程序。我没有更改任何内容并创建了一个简单的页面。当用户单击按钮时,我想在客户端加载此表
<table id="tblHelpRow">
<thead>
<tr class="title">
<th>F2
</th>
<th>F3
</th>
</tr>
</thead>
<tbody id="helpRowBody">
<%=MyRow %>
</tbody>
</table>
<asp:LinkButton ID="lnkEdit" runat="server" onclick="fnEdit();" />
这是我的脚本代码:
function fnEdit() {
BindGridView();
};
function BindGridView() {
rowid = {rowID:2};
$.ajax({
type: "POST",
url: "Default.aspx/GetRow",
contentType: "application/json; charset=utf-8",
data: param,
dataType: "json",
success: function (data) {
alert(data);
}
});
}
我的代码隐藏中有一个 WebMethod,它将结果存储在公共属性中。我存储在会话中的数据源,但我需要从 jquery 传递 rowID。
[WebMethod]
public static string GetRow(int rowID)
{
DataTable dt = (DataTable)HttpContext.Current.Session["SourceData"];
MyRow = "<tr>" +
"<td>" + dt.Rows[rowID]["F2"].ToString() + "</td>" +
"<td>" + dt.Rows[rowID]["F3"].ToString() + "</td>" +
"</tr>";
return "done";
}
但我没有得到任何结果。当我成功放置断点时,出现“身份验证失败”错误,并且此 webmethod 未执行。有什么问题?我没有更改 ant 身份验证设置。