从另一个页面的服务器端调用另一个页面js函数? C#

时间:2016-07-22 15:27:05

标签: javascript c# asp.net

我正在尝试在另一个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');
}

现在我的问题是如何调用它?

0 个答案:

没有答案