hello to the .NET gurus out there.
i hope you guys can help me on this.
Thanks in advance!
my page have two repeaters, diplaying different sets of data.
repeater 1 is bound to DataTable A and
repeater 2 is bound to DataTable B.
Displaying values for repeater with the code for repeater 1 is ok :
but when i tried displaying data from DataTable B with :
i get the error message :
Exception Details: System.Web.HttpException: DataBinder.Eval: 'System.Data.DataRowView' does not contain a property with the name [field from DataTable B]
i hope you guys can help me on this.
Thanks in advance!
my page have two repeaters, diplaying different sets of data.
repeater 1 is bound to DataTable A and
repeater 2 is bound to DataTable B.
Displaying values for repeater with the code for repeater 1 is ok :
<%# DataBinder.Eval(Container.DataItem, "field from DataTable A")%>
but when i tried displaying data from DataTable B with :
<%# DataBinder.Eval(Container.DataItem, "field from DataTable B")%>
i get the error message :
Exception Details: System.Web.HttpException: DataBinder.Eval: 'System.Data.DataRowView' does not contain a property with the name [field from DataTable B]