J
Jason Chan
let say i have an array A of string
A[0] = "a";
A[1] = "b";
..... A[n] = "xyz"
to bind the value of array to control, i can use
<%# DataBinder.Eval(Container, "DataItem") %>
but how about if i want to bind the index of the array to control?
thanks in advance
A[0] = "a";
A[1] = "b";
..... A[n] = "xyz"
to bind the value of array to control, i can use
<%# DataBinder.Eval(Container, "DataItem") %>
but how about if i want to bind the index of the array to control?
thanks in advance