我在从另一个非网页 .cs 类访问的 aspx 网页中有一个方法。此方法包含一个用于创建弹出窗口的 ClientScript。
尝试使其成为静态时,我在下面收到此错误。
非静态字段、方法或属性“System.Web.UI.Page.ClientScript.get”需要对象引用
所以我想知道是否有办法从另一个 .cs 类或解决方案访问此方法。
基本上,当 .cs 类发生错误时,我想显示一个显示错误的弹出窗口。
public static void message(string popupinformation)
{
ClientScript.RegisterStartupScript(this.GetType(), "", "popupinformation", true);
}
在 .cs
AddUI.message("alert('Error can not add information');");