hatası veriyor, nerde hata yapıyorum acaba? İlgilenen arkadaşlara şimdiden teşekkürler...
(bu arada ASP diline yeni başladım çok amatörüm..)
Kod: Tümünü seç
<%
Set baglan=Server.CreateObject("ADODB.Connection")
baglan.open "Provider=Microsoft.Jet.Oledb.4.0;Data Source="&Server.MapPath("atayurdu.mdb")
baglan.execute("INSERT INTO " & "REGISTER(ADI, SOYADI, TCKIMLIK, MAIL, PASSWORD, REPASSWORD, USERNAME)" &_
"VALUES("& "'" & Request("txtadi") & "'" & "," &_
"'" & Request("txtsoyadi") & "'" & "," &_
"'" & Request("txttckimlik") & "'" & "," &_
"'" & Request("txtmail") & "'" & "," &_
"'" & Request("txtpassword") & "'" & "," &_
"'" & Request("txtrepassword") & "'" & "," &_
"'" & Request("txtusername") & "'" & ")")
baglan.close
set baglan = nothing
%>