Hello...
I Has 2 table in one data set, this data set is fill when I do a httpwebrequest to a WebService. the WebService Send me a XML Datathat give me a 1 data set with 2 tables on it.
I'm Using repeater and this is what I do:
Repeater1.DataSource = anserw (thi is the dataset with the 2 tables);
DataBind();
on the asp page I do this.
<div align=justify style="width:300px; font-size:larger; font-weight:bolder"><%# DataBinder.Eval(Container.DataItem, "Name")%><br /></div>
<div align=right style="color:Red; width:300px; font-size:larger; font-weight:bolder"> Total Stay: <%#DataBinder.Eval(Container.DataItem, "FormattedTotalRate") %> <br /></div>
<div align=right><asp:Button runat=server ID="btSelect" Width="50px" Text="Select" /></div><br />
But this is for table 1 but I need to put a field from table 2
how do I do it? using Databinder.Eval()