I retrived 9 image paths from DB which i stored when user registers.... In one page i have to display 3 images in each row ...How to do that...
I created model class "FriendsList" with variable image Path and User id...
public String FriendImagePath
{
get;
set;
}
public int FriendUserId
{
get;
set;
}
And i created view model class and created a variable "FriendsList " of type Model class...
public List<FriendsList> FriendsList { get; set; }
I stored 9 values in this...
In .Aspx page i Have to display 3 row.. and in each row i have to display 3 image...
How to do this ???
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
How to do this...
Thank you..