1) I want to build a table dynamically. The table structure : 4 dropdown list columns,1 textbox column, 1 button column. At the click of button (associated with every row), I want to trigger an event which adds a new row to the above table, with similar set of controls in it.<BR><BR> I tried using Table web control, but since this doesn't persist across postbacks, I am having problems with adding new row. <BR><BR> I alos tried using datagrid control, but in vain (I am not much knowledgable in this). Using datagrid will I be able to add rows(having the above mentioned set of controls in a row) to the datagrid dynamically?<BR><BR> Is there any other way of doing this ? Please advice.