静的 Web メソッドにクライアント側スクリプトを登録したいと考えています。これが私のコードです:
public static class ScriptRegister
{
public static void RegisterScript(Page page, string script)
{
page.ClientScript.RegisterStartupScript(typeof(Page), "Refresh", script, true);
}
}
このクラスを使用して、クライアント側のスクリプトを登録します。
[WebMethod]
public static void UpdateCartCount(int prodId, int count)
{
...
ScriptRegister.RegisterScript(this.Page,script);
}
ご存知のように、静的メソッドではこれを使用できません。これについて何か提案はありますか?