Şu şekilde çözdüm yardım eden herkeze teşekkürler.
Alıntı
<form id="form1" method="post" action="webtasarim_duzenle.asp">
<input type="hidden" name="id" value="<%=sr("id")%>">
Alıntı
<%
if (Request.Form.Count > 0) then
id=Request.Form("id")
If id = "" OR IsNumeric(id) = False Then
Response.Write "Geçersiz id numarası"
Else
Set guncelle = Server.CreateObject("Adodb.Recordset" )
guncellesql = "select * from upload where id="&id
guncelle.Open guncellesql,baglan,1,3
If guncelle.eof Then
Response.Write "Kayıt bulunamadı"
Else
guncelle("aciklama") = request.Form("aciklama")
guncelle("webadresi") = request.Form("webadresi")
guncelle("resim") = request.Form("resim")
guncelle.update
End If
End If
end if
%>