我正在尝试在另一个admin.aspx
页面上发布通知来自 register.aspx ,以下是我在网络方法调用中所做的事情
[WebMethod]
public static string Setnotification(List<string> someValues)
{
Default foo = new Default();
foo.GetNotification();
}
这里我是非静态方法,我想调用admin.aspx页面的js函数,而不是同一页面。
public string GetNotification()
{
//call here the js of admin.aspx
Page.ClientScript.RegisterStartupScript(this.GetType(), "myScript", "AnotherFunction();", true);
return "";
}
admin.aspx 此处为js
function showmodel() {
window.stop();
$('#myModal').modal('show');
}
现在我的问题是如何调用它?