我想构建一些 SSRS 自定义代码,当被调用时,它会访问包含表达式的文本框(控件)并对其进行修改。
这可能吗?如果是这样,怎么做?我想使用 FindControl,但它需要访问页面对象,我不知道如何实现。
我能找到的大多数示例都使用“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.