Internetabi adlı üyeden alıntı: mesajı görüntüle
Hala Lazımıdır Bilmem Ama Şu Aşağıdaki şekilde Kullanabilirsiniz.

Uyeol.asp


    <form id="SiparisBilgileriForm" action="uyetamam.asp" method="post">
        <div data-role="fieldcontain">
            <label class="ui-hidden-accessible" for="eposta">eposta</label>
            <input id="eposta" type="text" name="eposta" maxlength="255" placeholder="eposta">
        </div>

        <div data-role="fieldcontain" style="text-align: center;">
            <button type="submit" data-inline="true">Tamam</button>
        </div>
    </form>

    
</body>
</html>
uyetamam.asp
<!-- #include file="baglantidosyan.asp" -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9" />
<%
eposta=Request.Form("eposta")


set Kontrol=baglanti.execute("Select * from ebulten where Eposta='"&eposta&"'")

if not Kontrol.eof Then

Response.Write("<LI>" & "Bu Kullanıcıda Bir Üye Zaten Var: " & eposta & "</LI>")
else
baglanti.Execute= "INSERT INTO ebulten (Eposta) VALUES ('"&eposta&"')" 

Response.Write("Kayıt Başarılı")
Response.Redirect("default.asp")
end if

%>
aynen denedim ama 500 hatası aldım