Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

can you include asp code in a response.write..

Status
Not open for further replies.

plasma800

Technical User
Jun 2, 2005
21
US
Can you do this

response.write "<td style='background-color:#FFFFFF;'><% if objRs('ThumbImageURL') <> '' then %>"
 
ya this way...
Code:
<%
response.write "<td style='background-color:#FFFFFF;'>" &
if objRs('ThumbImageURL') <> '' then 
"blah"
end if
%>

-DNG
 
oops...i meant

Code:
<%
response.write "<td style='background-color:#FFFFFF;'>" 
if objRs('ThumbImageURL') <> '' then 
response.write "blah" & "</td>" 
end if
%>

-DNG
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top