I had attached 2 datatable by using merge datatables I am not able to format these 2 tables ?
Code :-
DataTable dtAll = new DataTable();
dtAll.Merge(dt1);
dtAll.NewRow();
dtAll.Merge(dt);
I want the highlighted red potion above the attached table please provide me with solution.