|
Using FindControl
Home :: ASP.NET :: Controls :: FindControl
To get the value (or other properties) of a control (if you know it's Type) use FindControl
e.g. to find the value of the text in a TextBox called 'Description' call like this...
Dim ctlfind As TextBox = CType(Me.FindControl("Description"), TextBox)
Next >> Iterating Controls
|