There are two tables
1) Gallery and
2) Gallery Stack
The albumsnames are stored in Gallery table and related to it photos are stored in the Gallery stack. What I want is, When displaying Gallery in the listview. I want to show First image of the album in the Listview.
But Even after giving the Relation for same ID i am seeing the image in the different album inspite of coming in the Same album
Please see the code
<ul class="galleryul">
<asp:ListView ID="lstgallery" runat="server">
<LayoutTemplate>
<asp:PlaceHolder ID="itemPlaceHolder" runat="server"></asp:PlaceHolder>
</LayoutTemplate>
<ItemTemplate>
<li>
<a ...
Go to the complete details ...