I am trying to bind a generic list of users from my database to a gridview instead of using a dataset. I can build the generic list fine and reiterate through them one by one using the below:
Dim allusers as list(of MyUser) = myuser.getallusers()
For each myUser as MyUser in allusers
Next
However, when I bind this to a Gridview I know the correct number of records are showing, but I do not see the data for each row.... I am using a mixture of bound and templated columns in my Gridview, e.g.:
Bookmarks