如何对我在 aspx 页面中声明的 Literal 进行对象引用。现在我使用它,ltlContents.Text = .....
但我需要对其进行引用,ltlContents
以便我可以在静态方法中使用它,就像我使用它的.Text
属性一样。
我尝试了类似的东西,Literal ltl = ...
但这对我来说是新的,因为它不同于通常的对象引用,因为它来自前端。
更新:我想在这样的静态方法中使用 ltlContents 对象:ltlContents.Text = valueFromSomeFunction
,但编译器给了我以下错误:An object reference is required for the non-static field, method, or property _Default.ltlContents
。