S
SergioT
Hi
I got a sql's table with images and i need to show the image on a popup with
some text, my problem is that the text did not show up only the image
'------------Show the image ( works fine)
Response.Buffer = True
Response.ContentType = oImg.Formato.Trim
Response.BinaryWrite(oImg.Imagen)
'-------show the image name ( does not work)
Response.ContentType = sContent
Response.Write("<strong>Cod.: </strong>" & sCodPer & "<br>")
Response.Write("<strong>Name : </strong>" & sNombreCompleto)
Where is my mistake???
Thanks in Advance
bye
I got a sql's table with images and i need to show the image on a popup with
some text, my problem is that the text did not show up only the image
'------------Show the image ( works fine)
Response.Buffer = True
Response.ContentType = oImg.Formato.Trim
Response.BinaryWrite(oImg.Imagen)
'-------show the image name ( does not work)
Response.ContentType = sContent
Response.Write("<strong>Cod.: </strong>" & sCodPer & "<br>")
Response.Write("<strong>Name : </strong>" & sNombreCompleto)
Where is my mistake???
Thanks in Advance
bye