Şimdi Ara

iletişim formundan mail alma sorunu

Daha Fazla
Bu Konudaki Kullanıcılar: Daha Az
2 Misafir - 2 Masaüstü
5 sn
5
Cevap
0
Favori
444
Tıklama
Daha Fazla
İstatistik
  • Konu İstatistikleri Yükleniyor
0 oy
Öne Çıkar
Sayfa: 1
Giriş
Mesaj
  • İyi Çalışmalar

    Asp.net ile hazırladığım bir siteme iletişim formunda doldurulan mesajı mail ile almaya çalışıyorum ama sitemi host ettiğim firma ile bir türlü çözemedim sorunu

    kodlarım doğuru local de çalıştırdığım zaman mail gönderiyor

    Firma bana kendi hazırladığı örnek mail gönderme fornumu yükledi ftp ye sorunsuz çalışıyor. Ama ben aynı kodları alıp kendim çalışmayı derleyip yüklediğim zaman çallışmıyor.

    Firmaya Framework 4.0 kullanıyormuş bende aynı versiyonu kullanıyorum bir türlü olmuyor. Firma kendilerinden kaynaklanan bir sorun olmadığımı söylüyor.

    Ben aynı kodları Framework 3.5 kullanan başka bir sunucuya 3.5 versiyonuna çevirip yüklediğimde sorunsuz olarak çalışıyor.

    Şimdi bendemi var sorun yoksa host ettiğim firmada mı yardımcı olursanız sevinirim.

    Bu arada hata yı gönder butonuna bastığımda çalışma zamanı hatası olarak alıyorum.





    Server Error in '/' Application.

    Runtime Error

    Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

    Details: To enable the details of this specific error message to be viewable on remote machines, please create a tag within a "web.config" configuration file located in the root directory of the current web application. This tag should then have its "mode" attribute set to "Off".


    <!-- Web.Config Configuration File -->

    <configuration>
    <system.web>
    <customErrors mode="Off"/>
    </system.web>
    </configuration>

    Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.


    <!-- Web.Config Configuration File -->

    <configuration>
    <system.web>
    <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
    </configuration>







  • <customErrors mode="Off"/> off u on yaz hatayı gör ona göre karar veririz
  • Parola_18 kullanıcısına yanıt
    <customErrors mode="On"/> olarak yazdığımda da aynı hatayı veriyor.


    ama <ustomErrors mode"Off"/> yazdığımda

    Server Error in '/' Application.

    Security Exception

    Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file.

    Exception Details: System.Security.SecurityException: Request for the permission of type 'System.Net.Mail.SmtpPermission, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.

    Source Error:


    [No relevant source lines]

    Source File: App_Web_coxyxudy.0.cs Line: 0

    Stack Trace:


    [SecurityException: Request for the permission of type 'System.Net.Mail.SmtpPermission, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.]
    System.Security.CodeAccessSecurityEngine.Check(Object demand, StackCrawlMark& stackMark, Boolean isPermSet) +0
    System.Security.CodeAccessSecurityEngine.Check(CodeAccessPermission cap, StackCrawlMark& stackMark) +31
    System.Security.CodeAccessPermission.Demand() +46
    System.Net.Mail.SmtpClient.set_Port(Int32 value) +106
    birligim41._default.btnGonder_Click(Object sender, EventArgs e) in default.aspx.cs:28
    System.EventHandler.Invoke(Object sender, EventArgs e) +0
    System.Web.UI.WebControls.Button.OnClick(EventArgs e) +9628722
    System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +103
    System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +10
    System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +13
    System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +35
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +6704
    System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +245
    System.Web.UI.Page.ProcessRequest() +72
    System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) +21
    System.Web.UI.Page.ProcessRequest(HttpContext context) +58
    ASP.default_aspx.ProcessRequest(HttpContext context) in App_Web_coxyxudy.0.cs:0
    System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +341
    System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +69

    Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.34249




  • benim web configde ki ayarlarım <system.net>
    <mailSettings>
    <smtp from="admin@kislaliyiz.com" >
    <network host="mail.kislaliyiz.com " password="*******" port="587" userName="admin@kislaliyiz.com" />
    </smtp>
    </mailSettings>
    </system.net>
    kod tarafında ise MailMessage mesaj1 = new MailMessage();
    mesaj1.IsBodyHtml = true;
    mesaj1.From = new MailAddress("admin@kislaliyiz.com");
    mesaj1.To.Add(new MailAddress("admin@kislaliyiz.com", "Admin sana "));

    mesaj1.Subject = "Yeni Kullanıcı Kaydı..!!!";
    mesaj1.Body = "Yeni bir kullanıcı Var İsim"+CreateUserWizard1.UserName+" <br/> Mail: "+CreateUserWizard1.Email;
    SmtpClient client1 = new SmtpClient();
    client1.Send(mesaj1);
    olrak yazıyorum




  • Parola_18 kullanıcısına yanıt
    İlginiz için teşekkürler ama yine olmuyo
    ben en iyisi host ettiğim firmayı değiştirim

    Diğer firma .Frameworks 3,5 kullanıyo onda yayınlatınca sorunsuz çalışıyor.
  • Yapay Zeka’dan İlgili Konular
    Mesaj Gönderme Sorunu.
    9 yıl önce açıldı
    E-mail senkronizasyon sorunu
    10 yıl önce açıldı
    Daha Fazla Göster
    
Sayfa: 1
- x
Bildirim
mesajınız kopyalandı (ctrl+v) yapıştırmak istediğiniz yere yapıştırabilirsiniz.