If you have a formview control (we'll name it "FormView1"), and you have a textbox inside your formview control (which we'll name "TextBox1"). And we want the textbox to display the words, "I did it." To get to it, you would use something like:
Dim formviewtextbox
formviewtextbox = FormView1.FindControl("TextBox1")
formviewtextbox.Text = "I did it!"
I had found this before, and lost it when I needed it. But I just found it again and used it (which it does work. I just tested it). Hope you are able to use it now, too. Let me know if you have any questions.
Enormity
|