Bir dosyada yine benzeri bir hata alıyorum, benzer bir hata olduğu için yeni konu açma gereğinde bulunmadım, kodlar ve hata mesajı aşşağıdadır, ilgilenen arkadaşlara teşekkürler.
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver]General error Unable to open registry key 'Temporary (volatile) Jet DSN for process 0xb94 Thread 0x16d4 DBC 0xde26974 Jet'.
ipbanlama.asp, line 15 <%
userip=request.servervariables("remote_addr")
userhost=request.servervariables("remote_host")
%>
<%
'Check if the user ip is in the database
accessdb="veritabaniyolu/DB.mdb"
servf="driver={Microsoft Access Driver (*.mdb)};"
servf=servf & "dbq=" & server.mappath(accessdb)
set req = server.createobject("ADODB.Recordset")
sql = "select ip from iplist where ip ='" & userip & "'"
req.Open sql, servf <<< 15.SATIR BURASI OLUYOR
if req.eof then
ipin = "Y"
end if
req.close
%>
<%
'if the IP is IN the database, print the ipin.inc page
if ipin <> "Y" then %>
<!--#include file = "ipin.inc"-->
<% else %>
<%
'if the IP is OUT the database, print the ipout.inc page
%>
<!--#include file = "ipout.inc"-->
<% end if %>