在ASP页面中添代码为什么运行时老出现超过了脚本运行的最长时间

来源:百度知道 编辑:UC知道 时间:2024/06/06 04:57:35
HTTP 错误 500.100 - 内部服务器错误 - ASP 错误
Internet 信息服务

--------------------------------------------------------------------------------

技术信息(用于支持人员)

错误类型:
Active Server Pages, ASP 0113 (0x80004005)
超过了脚本运行的最长时间。可以为 Server.ScriptTimeOut 属性指定新值或更改 IIS 管理工具中的相应值来更改此限制。
/asp/wufeng/index.asp

浏览器类型:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
问题补充:<%
sql="select top 30 * from gqxx where type=0"
sql=sql&" order by id desc "
rst.open sql,conn,1,1
do while not rst.eof
%>
<tr>
<td width="50%" height="24"><font color="#FF0000">【求购】</font><a href="../gqxx_qy.asp?id=<%= rst("id") %>"><%= cutstr(rst("title"),Length,"...") %> </a></td>
<% rst.movenext %>
<td width="50%"><font color="

你有set rst = server.createobject("adodb.recordset")这条语句吗?

Server.ScriptTimeout=9999 '程序执行时间9999秒
也就是9999秒后超时
估计你的程序有问题。要不就是机器极慢