Hi chandra_77, For sending mail in ASP.Net 2.0 ( C# ), you can use the following code using System.Web.Mail; MailMessage mail = new MailMessage(); mail.To = "mail.From = "sender's mail"; mail.Subject = ""; mail.Body = ""; SmtpMail.SmtpServer = ""; SmtpMail.Send(mail); Hoping this will help you ^^