cesark
Programmer
- Dec 20, 2003
- 621
Hi,
Which is the best ASP.NET control to display an image (product photo) that is only a small sample to be enlarged when the user clicks on it and/or in an hyperlink below?
I ask it because now I use this control, and in this way:
And then the sub to view the real size photo:
This doesn’ t work in Netscape 7.2, more than real size photo is displayed where the control is placed, I mean a bigger real size photo.
How can I solve this?
Thank you
Which is the best ASP.NET control to display an image (product photo) that is only a small sample to be enlarged when the user clicks on it and/or in an hyperlink below?
I ask it because now I use this control, and in this way:
Code:
<asp:imagebutton ID="product_image” Width="80" Height="60" OnClick=" view_real_size” runat="server" />
And then the sub to view the real size photo:
Code:
Sub view_real_size(sender As Object, e As System.Web.UI.ImageClickEventArgs)
Response.Redirect(product_image.ImageUrl)
End Sub
This doesn’ t work in Netscape 7.2, more than real size photo is displayed where the control is placed, I mean a bigger real size photo.
How can I solve this?
Thank you