我有以下webmethod
<System.Web.Services.WebMethod()> Public Shared Function NewMethod(ByVal str1 As String) As String
LoadBlock(str1)
Return "Success"
End Function
以及以下程序
Public Sub LoadBlock(ByVal AA As Integer)
panAway.Visible = False '<--ASP panel control
lblHome.Visible = False '<--ASP label control
End
会引发以下错误
Cannot refer to an instance member of a class from within a shared method or
shared member initializer without an explicit instance of the class.
我理解我收到以下错误,因为我没有将LoadBlock设置为共享
但是,如果我这样做,我的程序中的所有控件......都会引发上面的错误
我能做些什么吗?
答案 0 :(得分:3)
“页面方法”始终是Shared
(C#中的static
)方法。它永远不能引用页面上的控件,也不能引用任何其他实例数据或方法。
实际上,请记住,在ASP.NET中,您的页面实例仅在每个HTTP请求期间存在。对WebMethod的请求是一个单独的请求 - 没有可能引用的页面实例。到WebMethod的请求到达时,实例已被销毁。