请教:关于广告到期的代码
我要表达的意思是如果该广告位无图片或者广告到期,则显示“虚位以待”的图片,代码是这样的,其中adend是指广告到期的时间
<!--#include file="conn.asp"-->
<%
set rs=server.creatobject("adodb.recordset")
sql="select * from ad where number='0001'"
rs.open sql,conn,1,1
if not rs.eof and now()< rs("adend")then
%><img height="90" width="345" scr="<%=rs("pic")%>"/><%else%>><img height="90" width="345" scr"123.gif"/><%end if%>
这样写代码有问题吗,为什么要提示我发生意外?