You know I just took the advice from your original post to use
<IMG SRC="../LPimages/<%=rsLPM.Fields("Ps_ImageUrl")%>">
I created a new ASP page called it LPImages.asp, created a recordset to pass the value into <%=rsLPM.Fields("Ps_ImageUrl")%>, one the original page I used
language="javascript" id="Image" onclick="return Image_onclick();">
that called a function called image_click
function Image_onclick() {
window.listados.location.href="LPImage.asp?Ps_Id=< %=Request.QueryString("Ps_Id")%>"
}
this worked out because in the original page I am using the <IFrame> tag the call other pages like subforms.
I should of just stuck with your original posting. one quick formating question in <IMG SRC="../LPimages/<%=rsLPM.Fields("Ps_ImageUrl")%>"> how do I get it fit smaller I have to scroll around in the Iframe to view the complete picture.:)
|