Webmaster Forumu

Geri git   Webmaster Forumu > Webmaster Genel > Programlama > ASP .NET

ASP .NET ASP & .NET

Cevapla
 
LinkBack Seçenekler Stil
  #1 (permalink)   eTicaret 
Alt 2007-12-16, 15:00
Junior Member
 
Üyelik tarihi: Nov 2007
Mesajlar: 87
Tecrübe Puanı: 0
eTicaret: %100/4
cenkp is an unknown quantity at this point
Standart asp de yazılmış iletişim formu lazım

Arkadaşlar aradım ama bulamadım, bana asp de yazılmış iletişim formu lazım.
Windows hostinde php ile yazılmış iletişim formları çalışmıyor da.
Yardımcı olursanız çok memnun olurum.
Alıntı ile Cevapla

  #2 (permalink)   eTicaret 
Alt 2007-12-16, 18:59
forumselcuk - ait Kullanıcı Resmi (Avatar)
Senior Member
 
Üyelik tarihi: Feb 2006
Nerden: Selçuk Üniversitesi
Mesajlar: 521
Tecrübe Puanı: 3
eTicaret: %0/0
forumselcuk is on a distinguished road
Standart

Windows hostingde php lerin çalışmamasının nedeni pleskde site ayarlarında setup kısmınmda php desteğinin olmamasıdır
aspindir.com da asp ilede bulabilirsin istediğin türlüsünü
__________________
Php Coder
Alıntı ile Cevapla

  #3 (permalink)   eTicaret 
Alt 2007-12-16, 19:04
Junior Member
 
Üyelik tarihi: Nov 2007
Mesajlar: 87
Tecrübe Puanı: 0
eTicaret: %100/4
cenkp is an unknown quantity at this point
Standart

Dediğin ayarları yapmayı denedim ama olmadı.
Teşekkür ederim adres için.
Alıntı ile Cevapla

  #4 (permalink)   eTicaret 
Alt 2007-12-16, 19:14
TrDownload - ait Kullanıcı Resmi (Avatar)
Wordpress Developer
 
Üyelik tarihi: Jun 2005
Nerden: Bursa
Mesajlar: 3.756
Tecrübe Puanı: 6
eTicaret: %100/15
TrDownload has a spectacular aura aboutTrDownload has a spectacular aura about
Standart

pleskte domain e ait hosting alanını olustururken asp ve php seceneklerini işaretle calışır yapamaz isen pm at yardımcı olayım
__________________
Wordpress temalarınız türkçeye cevrilir, Wordpress icin adsense reklam yerleşimi yapılır.
Alıntı ile Cevapla

  #5 (permalink)   eTicaret 
Alt 2007-12-16, 19:56
Permission - ait Kullanıcı Resmi (Avatar)
best scuba
 
Üyelik tarihi: Dec 2004
Nerden: izmir
Mesajlar: 5.216
Tecrübe Puanı: 9
eTicaret: %100/1
Permission has a spectacular aura aboutPermission has a spectacular aura about
Standart

Sorunsuz ve ücretsiz asp mail form Server.CreateObject("JMail.Message" ) dili ile hazırlanmış bir script scriptteki secenekleri cogaltmak kolay sadece eklediğinzi input type="text" name="Ad_Soyad" kısımlarını eklediğiniz secenekle yapınız (tr karekter ve boşluksuz)


hadi kolay gelsin bakalım.


form.asp
Kod:
<table border="1" cellpadding="3" cellspacing="3" style="border-collapse: collapse; border-width: 0" bordercolor="#111111" width="44%" id="AutoNumber1" height="80">
  <tr><form method="POST" action="gonder.asp">
    <td width="21%" style="border-style:none; border-width:medium; " height="17">
    <font size="2" face="Verdana">Adı Soyadı :</font></td>
    <td width="79%" style="border-style:none; border-width:medium; " height="17">
    <input type="text" name="Ad_Soyad" size="35"></td>
  </tr>
  <tr>
    <td width="21%" style="border-style: none; border-width: medium" height="17">
    <font size="2" face="Verdana">Mail :</font></td>
    <td width="79%" style="border-style: none; border-width: medium" height="17">
    <input type="text" name="Mail" size="35"></td>
  </tr>
  <tr>
    <td width="21%" style="border-style: none; border-width: medium" height="17">
    <font size="2" face="Verdana">Konu :</font></td>
    <td width="79%" style="border-style: none; border-width: medium" height="17">
    <select size="1" name="Konu">
    <option>---- Konu Seciniz ----</option>
    <option value="Bilgi Almak">Bilgi Almak</option>
    <option value="Şikayet">Şikayet</option>
    <option value="Reklam">Reklam</option>
    </select></td>
  </tr>
  <tr>
    <td width="21%" style="border-style: none; border-width: medium" height="17" valign="top">
    <font size="2" face="Verdana">Mesajın :</font></td>
    <td width="79%" style="border-style: none; border-width: medium" height="17">
    <textarea rows="6" name="Mesaj" cols="35"></textarea></td>
  </tr>
  <tr>
    <td width="21%" style="border-style: none; border-width: medium" height="17">
    </td>
    <td width="79%" style="border-style: none; border-width: medium" height="17">
      <input type="submit" value="Gönder" name="B1">
      <input type="reset" value="Sıfırla" name="B2"></p>
    </form>
    </td>
  </tr>
</table>
--------------------------------------------------------------------------

gonder.asp
Kod:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1254"%>
<%
CONST  infMailSunucu = "mail.site.com"
CONST  infMailKullaniciAdi = "mail@site.com"
CONST  infMailSifre = "sifre"
CONST  infMailYollayan = "mail@site.com"
CONST  alici_mail = "mail@site.com"
CONST  mailbasligi = "Bilgi Mesajı"
dim  mesaj 
mesaj = "<html><head><meta http-equiv=""Content-Type"" content=""text/html; charset=iso-8859-9""></head><body>"

Dim bilgiler
For Each bilgiler In Request.Form
	if bilgiler <> "Submit" then
		mesaj = mesaj & "<b>" & bilgiler & " : </b> "
		mesaj = mesaj & Request.Form(bilgiler) & "<br>"
	end if
Next

mesaj = mesaj & "</body></html>"



     SET  objMail = Server.CreateObject("JMail.Message" ) 
     With  objMail
        .ContentType = "text/html" 
        .CharSet = "ISO-8859-9" 
        .AddRecipient alici_mail
        .From = infMailYollayan
        .MailServerUserName = infMailKullaniciAdi
        .MailServerPassWord = infMailSifre
        .Logging =  True
        .Silent =  True
        .Subject = mailbasligi 
        .Body = mesaj
        .Send(infMailSunucu)
     End  With
     SET  objMail =  Nothing


response.write("Mesajınız Bize Ulaşmıştır. En Kısa zamanda cevap yazılacaktır..")

%>
gonder.asp de yapman geren degişiklikler

CONST infMailSunucu = "mail.site.com"
CONST infMailKullaniciAdi = "mail@site.com"
CONST infMailSifre = "sifre"
CONST infMailYollayan = "mail@site.com"
CONST alici_mail = "mail@site.com"
CONST mailbasligi = "Bilgi Mesajı"
__________________
I'm Back

Konu Permission tarafından (2007-12-16 Saat 20:13 ) değiştirilmiştir..
Alıntı ile Cevapla

  #6 (permalink)   eTicaret 
Alt 2008-04-22, 14:06
Junior Member
 
Üyelik tarihi: Apr 2008
Mesajlar: 1
Tecrübe Puanı: 0
eTicaret: %0/0
cagdaselk is an unknown quantity at this point
Standart

Alıntı:
Permission´isimli üyeden Alıntı Mesajı göster
Sorunsuz ve ücretsiz asp mail form

hadi kolay gelsin bakalım.
Çalışmıyor yardımcı olurmusunuz?
Alıntı ile Cevapla

Cevapla

Seçenekler
Stil


Benzer Konular
Konu Konuyu Başlatan Forum Cevaplar Son Mesaj
çalışan php iletişim formu lazım. deviL Script Satış-Sipariş 3 2007-12-08 22:13
Tüm dünyada kullanılan paypalın iletişim formu bozuk Gifted.ib Paypal E-Gold 7 2007-02-27 12:44


Bütün Zaman Ayarları WEZ +2 olarak düzenlenmiştir. Şu Anki Saat: 20:55 .


Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.2.0