How to send the Mail in C# using ASP.Net ? And my Answer is
as follows ?
Answers were Sorted based on User's Feedback
Answer / sharifuddin
MailMessage mail = new MailMessage();
mail.To = txtto.Text;
mail.From = txtfrom.Text;
mail.Subject = txtsub.Text;
mail.Body = txtmsg.Text;
mail.Priority = MailPriority.High;
SmtpMail.SmtpServer =
SmtpMail.SmtpServer.ToString();
try
{
SmtpMail.Send(mail);
Label6.Text = " Message sent Succesfully....";
}
catch (Exception ex)
{
Label5.Text = "";
Label6.Text = " Message sent Failed.. " +
ex.Message;
}
But The When I sent it gives the error as :"The transport
failed to connect to the server."
Could you please help me....?
Thank you..
me.sharifuddin@gmail.com
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / satya narayan sahoo
You can try using any other SMTP sevrer's IP in ur network.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rajesh
hi
i used the same code & not getting any error but not i am
not getting mail.
could u plz help me ?
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain how to redirect tracing to a file?
I am looking for a fast track course (MAX 15 days) in MS.NET 3.5 and SQLSERVER 2005 in hyderabad or mumbai or pune. I am working in mumbai so cannot gor for long course. Can any body suggest me the best couching class or best faculty for the same. Thanks.
What is clr in .net?
What are the features of dot net?
What is the difference between task and thread in .net?
Explain about the Common Language Runtime?
I have a problem in installing visual Studio 2008 on PC that have Celeron Processor ? afterAll InstallionFaied . Pls suggest me . Is it possible or not .if Yes then How ?
Explain me difference between public and static modifiers?
What are channels in .NET Remoting?
Explain about .net?
What is il in vb.net?
<li id="Accomodation" runat="server" visible="false"><a href="../searchaccommodation.aspx?">Accomm</a></li> i have this code.now on server side i want to compare this id(Accommodation) value and want id i.e.Accommodation.visible=true;