tags:

views:

295

answers:

1

I am trying to concatenate image url (string) with img tag but i am not sure how to put " after src=. Please help to concatenate this.

response.write("<img src=" & '"' & rs("ProductImage") & '"' &" /><br/>")
+3  A: 

You have to double up the quotes:

Response.Write("<img src=""" & rs("ProductImage") & """ /><br/>")
Thomas
Thanks Thomas, its working.
itsaboutcode