我想构建一些SSRS自定义代码,该代码在被调用时将访问包含表达式的文本框(控件)并对其进行修改。
这可能吗?如果是这样,怎么办?我想使用FindControl,但是它需要访问page对象,但我不确定该如何实现。
我能找到的大多数示例都使用'this'对象,但是我无法访问自定义代码中的'this'对象。
我的代码:
Public Function Helloworld AS String
System.Web.UI.Page.FindControl("TextBox1")
End Function
产生错误:
There is an error on line 1 of custom code:
[BC30469] Reference to a non-shared member requires an object reference.