[求助]ASP程序问题
<%set rs01=Server.CreateObject("Adodb.Recordset")sql="select * from SMT_ypxxtwo where SMT_ypxxone_id=1 order by SMT_id desc"
rs01.open sql,conn,1,1
do while not rs01.eof
%>
<tr>
<td height="20" valign="middle"><div align="center" style="font-size: 12px"><a href="peijian.asp?id=<%=rs01("SMT_ypxxtwo_id")%>"></a><%=rs01("SMT_ypxxtwo")%></div></td>
<td></td>
</tr>
<%rs01.movenext
loop
rs01.close
set rs01=nothing%>
加上这段代码就会出现
“Active Server Pages, ASP 0113 (0x80004005)
超过了脚本运行的最长时间。可以为 Server.ScriptTimeOut 属性指定新值或更改 IIS 管理工具中的相应值来更改此限制。”
的提示。。
请问这段代码哪里出错了?
谢谢大家了!!!!