0

我的代码调用了一个 WebMethod。在该 WebMethod 中,我需要创建一个新的控件集合。在VB中,我通常会写:

Dim cc As System.Web.UI.ControlCollection = CreateControlCollection()

但是因为我在 WebMethod 中,所以我得到了错误:

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.

请问有什么建议吗?谢谢各位!

4

1 回答 1

0

该错误消息暗示您正在尝试从共享方法访问实例级成员或方法。如果要从共享方法访问实例级方法或成员,首先必须使用 new 运算符创建实例,然后可以从那里访问其公共成员和方法。

于 2012-05-25T16:05:59.990 回答