Yeni kurmaya çalıştığım Sitemin ürün ve alt sayfalarına girmeye çalıştığımda aşağıdaki gibi bir hata ile karşılaşıyorum.
ADODB.Field error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
/404-urun.asp, line 79
Hatanın bulunduğu sayfadaki kod ise şu şekilde
<%
gidecegimyer= Request.ServerVariables("QUERY_STRING")
gidecegimyer=replace(gidecegimyer,"404;https://www.siteadi.com:443/","")
gidecegimyer=replace(gidecegimyer,"404;http://www.siteadi.com:443/","")
bbb = mid(gidecegimyer,1,4)
aaa = ""
For sayi = 1 to len(bbb)
if isnumeric(mid(bbb,sayi,1)) then
aaa = aaa & mid(bbb,sayi,1)
end if
Next
%>
<%
id = aaa
if not isnumeric(id) then response.Redirect("default.asp")
sorgu = "select * from urunler where id =" & "'" & id & "'"
set liste = conn.execute(sorgu)
if not liste.eof then
sayfa_title = liste("sayfa_title")
if sayfa_title="" then
sayfa_title=liste("ad")
end if
anahtarkelimeler = liste("anahtarkelimeler")
sayfa_aciklama = liste("sayfa_aciklama")
aciklama = liste("ad") & " Detay Sayfası"
buyukresim = liste("buyukresim")
ad = liste("ad")
aciklama = liste("aciklama")
kod = liste("kod")
fiyat = liste("fiyat")
idno = liste("id")
fiyatim = fiyat
indirimlifiyat = liste("indirimlifiyat")
end if
sorgup="select * from prprpr where prid='"&aaa&"'"
set liste2 = conn.execute(sorgup)
kartid= liste2("katid")en alt satır 79.
Hatanın çözümü ile ilgili yardımlarınızı bekliyorum.