Creating and handling controls at Runtime
I need a webform that will contain a table with a fixed amount of columns (say 10) and a varied amount of rows (this will depend on how many rows I return from a database table).
I need this table to be created at runtime (on the click of a button). Once the table has been created I need every row to contain a textbox within columns 4, 5 & 6.
My problems are as follows:
How to create and insert a textbox control (at runtime) into a table’s cell?
How to return/handle a textbox’s value and events?
USING VB.NET
Anyone?
Thanks
Re: Creating and handling controls at Runtime
Use a datagrid that's what they are designed for!
DJ