this error is occuring while am submitting form in asp.net,code behind C#.
what is the meaning of this error,
what is my fault
can any one reply???
what is the meaning of this error,
what is my fault
can any one reply???
// Begin modification SmtpClient smtp = new SmtpClient(); Smtp.Host = "smtp.gmail.com"; Smtp.Port = port; Smtp.Timeout = 50000; Smtp.EnableSsl = True; smtp.Credentials = new System.Net.NetworkCredential(userName, password); // End modification smtp.Send(message);
Comment