<%if request.form("filtre")<>"" then
il = request.form("il")
tur = request.form("tur")
if il="" then il="*"
if tur="" then tur="*"
set x = db.execute("select * from icerik where il like '"&il&"' and tur like '"&tur&"'")
if x.eof then
response.write "belirtilen kriterlere uygun kayıt yok"
else
while not x.eof
response.write x("parti") & "<br>"
x.movenext:wend
end if