Postback Question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a user control in which I display a WebControls.Table called
"EmployeeData" which contains input boxes (textboxes for name, address etc).
When I post back, how do I access the "EmployeeData" table so that I can
retrieve the data from input boxes dynamically ? Thanks for your time!.
 
exBK said:
I have a user control in which I display a WebControls.Table called
"EmployeeData" which contains input boxes (textboxes for name,
address etc). When I post back, how do I access the "EmployeeData"
table so that I can retrieve the data from input boxes dynamically ?

Simply add an instance field of your user control's type to your code-behind
class. See http://www.devx.com/vb2themax/Tip/18843

Cheers,
 
Back
Top