2017-03-06 1 views
1

im getting error - "Demande d'autorisation de type' System.Net.Mail.SmtpPermission, System, Version = 2.0.0.0, Culture = neutre, PublicKeyToken = b77a5c561934e089 'a échoué. "obtenir l'erreur - Demander la permission du type 'System.Net.Mail.SmtpPermission

Code

string name = txtName.Text.Trim(); 
    string email = txtemail.Text.Trim(); 
    string phone = txtPhoneNum.Text.Trim(); 
    string companyname = txtcmpnm.Text.Trim(); 
    string subject = txtsubject.Text.Trim(); 
    System.IO.StringWriter sw = new System.IO.StringWriter(); 
    HtmlTextWriter hw = new HtmlTextWriter(sw); 
    System.IO.StreamReader r = null; 
    r = new System.IO.StreamReader(Server.MapPath("~/ContactMail.txt")); 
    string body = r.ReadToEnd(); 

    body = body.Replace("<%Name%>", name); 
    body = body.Replace("<%email%>", email); 
    body = body.Replace("<%phonenum%>", txtPhoneNum.Text.Trim()); 
    body = body.Replace("<%message%>", txtmsg.Text.Trim()); 


    try 
    { 


    using (MailMessage mm = new MailMessage(email, "[email protected]")) 
    { 
     mm.IsBodyHtml = true; 
     mm.Subject = subject; 
     mm.Body = body; 

     SmtpClient smtp = new SmtpClient(); 
     smtp.Host = "smtp.gmail.com"; 
     smtp.EnableSsl = true; 
     NetworkCredential NetworkCred = new NetworkCredential("[email protected]", "password"); 
     smtp.UseDefaultCredentials = true; 
     smtp.Credentials = NetworkCred; 
     smtp.Port = 587; 
     smtp.Send(mm); 
     ClientScript.RegisterStartupScript(GetType(), "alert", "alert('Email sent.');", true); 
    } 
} 

Répondre

1

Web.Cofig: -

Vérifiez votre web.config et ajoutez ce code tag ...

<trust level="Full" originUrl="" /> 
<customErrors mode="Off"/> 
+0

dans lequel tag je dois écrire, im en utilisant .net 3.5 framework – Swapna

+0

les deux codes .. @ Swapna –

+0

J'ai ajouté ces balises recevant toujours la même erreur. – Swapna