-
<asp:Table> Miracle
hai
ive a <asp:Table id="Table2" .../> in .aspx page.
in code behind file im contructing a dynamic table
using
TableRow(),TableCell() etc and i got the structure in <asp:table>
now i want to convert this dynamic table into dataset and merge it to another dataset, then bind to datagrid.
This is possible or not, i dont know. i tried in many ways. im not getting the result. How to make this?
V.R.mahendran
-
Create 3 DataSets. Populate the first 2 with the data you already have. Loop through them to create the 3rd dataset, and bind that to the DataGrid...