How can I make an object reference of a Literal that I have declared in the aspx page.
Now I use it as ltlContents.Text = .....
but I need to make a reference of that ltlContents
so I can use it in a static method the same way I use it with its .Text
attribute.
I tried something like Literal ltl = ...
but this is new for me, as it's different from the usual object referencing, as it comes from the front-end.
UPDATE: I want to use the ltlContents object in a static method like this: ltlContents.Text = valueFromSomeFunction
, but the compiler gives me the following error: An object reference is required for the non-static field, method, or property _Default.ltlContents
.
You need a reference to the control or the page where this control is sitting in. This page must be running though an actual lifecycle. So for example from a webmethod you cannot access a control.
However, then you can access this control even from a static method, which seems to be what you want:
Now this works from everywhere during the lifefycle of a page: