| 內文 |
各位先進
請問我的asp網頁
放入主機系統為win2000server已更新到sp4~~access2000
有時正常
有時會顯示 Microsoft JET Database Engine 錯誤 '80004005' 無法指出的錯誤
但是隔了大概10分鐘
或是我把iis服務停止在重開就好了
那台server大概有10個asp使用access的網頁在跑
網頁程式如下
==========cnndb.asp=============================
<%
set cnndb = server.CreateObject("adodb.connection")
strcon = "provider=microsoft.jet.oledb.4.0;data source=" & _
server.MapPath("./database/ab20070404.mdb")
%>
===============================================
=============index.asp=========================
<%
strsql ="select * from color where office='" & request("office") & "'"
cnndb.open strcon
set rs = cnndb.Execute(strSQL)
%>
............
.........
.........
...........
........
<%
strsql ="select * from menu where office='" & request("office") & "'"
set rs = cnndb.Execute(strSQL)
%>
............
.........
........
..
.....
<%
strsql ="select * from down where office='" & request("office") & "'"
set rs = cnndb.Execute(strSQL)
%>
..........
.......
.......
....
.......
<%
rs.close
set rs=nothing
cnndb.close
set cnndb=nothing
%>
|