asp图片显示遇到棘手问题!恳求指点!
建站遇到问题,恳求高手指点!原本代码如下,一切正常。
<td width="379" rowspan="10" bordercolor="#999999"><p align="center" class="STYLE8"> <a href="<%=(Recordset1.Fields.Item("图片").Value)%>" target="_blank"><img src = "<%=(Recordset1.Fields.Item("图片").Value)%>" /></a></p></td>
为了美观,改成如下代码,提示我编译器错误,无效字符。我该怎么改呢?
<td width="379" rowspan="10" bordercolor="#999999"><p align="center" class="STYLE8">
<% if Recordset1.Fields.Item("图片") = "http://"
then
response.write "没有图片"
else
response.write "<a href="<%=(Recordset1.Fields.Item("图片").Value)%>" target="_blank"><img src = "<%=(Recordset1.Fields.Item("图片").Value)%>" /></a>"
end if
%>
</p></td>