Hi All,
I am breaking my head to fix an issue. I have a method that returns a List<object[]>
.
Each object[]
in the List contains the following:
object[0]=Id;
object[1]=Name;
Now I am looking for a way to bind this List to a ListView in a custom ItemTemplate which would look as follows:
<asp:Label runat="server" ID="lblId"
Text=Here want to do an Eval/Bind for object[0]"></asp:Label>
<asp:Label runat="server" ID="lblName"
Text=Here want to do an Eval/Bind for object[1]"></asp:Label>
Any suggestions will be deeply appreciated.