我在页面后面的代码中有以下 webmethods
[WebMethod]
[ScriptMethod]
public static string BindDataTable()
{
//This function connects to db gets the result and binds a datatable
}
[WebMethod(EnableSession = true)]
[ScriptMethod]
public static string DeleteItems(int[] ids)
{
//This function deletes the items
}
在 aspx 页面中,我有一个触发两种页面方法的元素
<a href="#" onclick="Delete()"> Delete</a>
删除js函数如下
function Delete(){
PageMethods.DeleteItems(selectedIds);
PageMethods.BindDataTable();
}
在firebug中检查控制台显示两个Pagemethods都被连续触发
- 删除项目
- 绑定数据表
但是,有时 BindDataTable 会在删除函数完成提交到数据库之前启动,这会阻止表在没有刷新的情况下进行视觉更新。
知道如何在前一个页面方法完成它的服务器端命令之后触发调用页面方法吗?谢谢