Posts: 2,536
Location: Western Maryland
|
The quotes you are using for the src attribute are making the Response.Write method think that is the end of the command -- then it doesn't know what to do with IMG_1771AA.jpg and the rest of your line. Try this.
Code:
Response.Write "<img src='IMG_1771AA.jpg'>"
or this (I believe) is another way to escape double quotes in VBScript.
Code:
Response.Write "<img src=""IMG_1771AA.jpg"">"
__________________
—Kyrnt
|