hi
i want to bind the all image from the server folder along with their name
i have html code below
<asp:Repeater ID="RepeaterImages" runat="server">     <ItemTemplate>         <asp:Image ID="Image" runat="server" Width="20%" ImageUrl='<%# Container.DataItem %>'/>         <asp:Label ID="lblname" runat="server" Text=""> </asp:Label>     </ItemTemplate> </asp:Repeater>

image is binding correctly , but not possible to assign the name to the respective position.
below is c# code , i have wrote in page load

  string[] filesindirectory = Directory.GetFiles(Server.MapPath("~/Upload/Products/Template/Thumbnail/"));         ...

Go to the complete details ...