Posted on: 6/30/2015 4:28:48 PM | Views : 658

Hello, 
   In my asp.net4.0 page, I have 3 Images each embedded in LinkButton :
<asp:LinkButton ID="panImgLnkBtn" runat="server"> <asp:Image runat="server" ID="panImg" BorderStyle="Ridge" BorderColor="Turquoise" Width="130px" Height="100px" ImageUrl="~/CRMImages/no_image_symbol.png" /> </asp:LinkButton> On each image, I want to open a popup with "Download" & "Print" buttons. 
I was thinking to create a panel and open a popup on linkbutton click by using ajaxToolkit:ModalPopupExtender . But, I realized that for I will need 3 such panels & ModalPopup's for each image as got to set TargetControlId for each link button.
In my other page, I will have more than 10 images.

What can be the best way to achieve this ...

Go to the complete details ...