我需要使用静态 WebMethod 在用户所在的活动(当前)asp 页面中调用非静态方法。我怎样才能做到这一点?
这两种方法都在 ASP 页的 cs 文件中。
public void NormalMethod()
{
txtFindingNum.Text = "Ajax is da bomb";
}
[WebMethod]
public static void MyWebMethod()
{
// This is the part I need help with...
DoIt();
}