时时外汇牌价:谁能告诉我这段ASP代码的意思呀???

来源:百度文库 编辑:神马品牌网 时间:2024/05/02 11:51:58
<%if rs("pic1")="" then
response.write "<table width=""198"" border=""0"" cellspacing=""0"" cellpadding=""0"" height=""166"" class=""kuan"">"
response.write "<tr>"
response.write "<td width=""230"" align=""center"" valign=""middle""><span class=""font"">暂无图片</span></td>"
response.write "</tr>"
response.write "</table>"
else%>

如果参数pic1的值为空,那么输出一个表格,显示暂无图片。
以下为输出内容
<table width="198" border="0" cellspacing="0" cellpadding=""0"" height="166" class="kuan">
<tr>
<td width="230" align="center" valign="middle"><span class="font">暂无图片</span></td>
</tr>
</table>