Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <asp:DataList runat="server" id="myDataList">
  2. <ItemTemplate>
  3. <b><%# DataBinder.Eval(Container.DataItem, "Column from DataSource1") %></b>
  4. <br />
  5. <%# DataBinder.Eval(Container.DataItem, "Column from DataSource2") %>
  6. </ItemTemplate>
  7. </asp:DataList>
  8.  
  9. DataTable customTable = new DataTable();
  10. customTable.Columns.Add("Column1");
  11. customTable.Columns.Add("Column2");
  12.  
  13. DataRow drNew = null;
  14. foreach(DataRow dR in 1stDataSource)
  15. {
  16. foreach(DataRow dR1 in 2ndDataSource)
  17. {
  18. if(dR["ID"] == dR1["ID"])
  19. {
  20. drNew = customTable.NewRow();
  21. drNew["Column1"] = dR["Column1"];
  22. drNew["Column2"] = dR1["Column2"];
  23. customTable.Rows.Add(drNew);
  24. break;
  25. }
  26. }
  27. }
  28.  
  29. myDataList.DataSource = customTable;
  30. myDataList.DataBind();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement