The IBuySpy Store sample below (1) uses the following code to show a record specific product imageson the product details page.
How could this be achieved for an iPix embed 360 image shown below (2).
(1)*********************
VB.NET CODE
Public Class
Protected WithEvents ProductImage As System.Web.UI.WebControls.Image
--
Private Sub Page_Load
ProductImage.ImageUrl = "ProductImages/" & myProductDetails.ProductImage
--
HTML CODE
<asp:image id="ProductImage" runat="server" border="0" width="309" height="185" ImageAlign="AbsMiddle"></asp:image>
(2)*********************
<embed width="600" height="180" src="Camusdarach_hires.ipx" border="1">
I am not sure how to work round the fact that there is no embed in the System.Web.UI.WebControls.
OR
Is there another way of returning the record specific value from the embed field?
Scot