I have a datagrid created in my asp.net application which binds to a data table. Now due to certain needs I need to replace this grid by the asp table but I am not sure how to bind data to the asp table as it doesnt have any table.datasource property.
You can't Bind a DataTable to an ASP Table Object. However, you could loop over the DataTable and populate the ASP Table if needed. The curious question is why do you need to replace the DataGrid?
Yeah did the same finally....reason is more contextual actually I have a script ready for sorting and paging...which I want to reuse for thios database nut that works with tables only
Bookmarks