W
Will T
I have added an HTMLTextArea object (htaNote) to my
webform.aspx and in the Page_Load codebehind I type
something like:
htaNote.Value = "Ouch!"
Unfortunately, the intellisense does not provide
the .Value for me because it does not recognize the object.
I cannot reference Me.htaNote, either.
If I:
Dim hta As HTMLTextArea
I can:
hta.Value (with Intellisense)
so I tried:
Dim hta As HTNLTextArea
hta = Me.FindControl("htaNote")
hta.Value = "Ouch!"
but this fails since it doesn't find an htaNote object on
the form.
What do I need to reference this object?
Any help would be appreciated.
webform.aspx and in the Page_Load codebehind I type
something like:
htaNote.Value = "Ouch!"
Unfortunately, the intellisense does not provide
the .Value for me because it does not recognize the object.
I cannot reference Me.htaNote, either.
If I:
Dim hta As HTMLTextArea
I can:
hta.Value (with Intellisense)
so I tried:
Dim hta As HTNLTextArea
hta = Me.FindControl("htaNote")
hta.Value = "Ouch!"
but this fails since it doesn't find an htaNote object on
the form.
What do I need to reference this object?
Any help would be appreciated.