Oct 20, 2006 #1 plasma800 Technical User Joined Jun 2, 2005 Messages 21 Location US Can you do this response.write "<td style='background-color:#FFFFFF;'><% if objRs('ThumbImageURL') <> '' then %>"
Can you do this response.write "<td style='background-color:#FFFFFF;'><% if objRs('ThumbImageURL') <> '' then %>"
Oct 20, 2006 #2 DotNetGnat Programmer Joined Mar 10, 2005 Messages 5,548 Location IN ya this way... Code: <% response.write "<td style='background-color:#FFFFFF;'>" & if objRs('ThumbImageURL') <> '' then "blah" end if %> -DNG Upvote 0 Downvote
ya this way... Code: <% response.write "<td style='background-color:#FFFFFF;'>" & if objRs('ThumbImageURL') <> '' then "blah" end if %> -DNG
Oct 20, 2006 #3 DotNetGnat Programmer Joined Mar 10, 2005 Messages 5,548 Location IN oops...i meant Code: <% response.write "<td style='background-color:#FFFFFF;'>" if objRs('ThumbImageURL') <> '' then response.write "blah" & "</td>" end if %> -DNG Upvote 0 Downvote
oops...i meant Code: <% response.write "<td style='background-color:#FFFFFF;'>" if objRs('ThumbImageURL') <> '' then response.write "blah" & "</td>" end if %> -DNG
Oct 20, 2006 Thread starter #4 plasma800 Technical User Joined Jun 2, 2005 Messages 21 Location US THANK YOU!!!! Upvote 0 Downvote