hello,
I am student and only have basic knowledge of asp.
I have image gallary using dataList in my site.
when I click on image(in dataList) it will get popup with close button.
Can you help me please?
<asp:DataList ID="dtlist" runat="server" RepeatColumns="4" OnDeleteCommand="Delete_Command">
<ItemTemplate>
<asp:Image ID="Image1" runat="server" Height="144px" Width="91px" ImageUrl='<%# Bind("image_path") %>'/>
</ItemTemplate>
</asp:DataList>
This is my data list.