Network ASP.Net

<%@ Page Language="C#" %>
<%@ Import Namespace="System.Web.Mail" %>
    
    void Button1_Click(Object sender, EventArgs e) {
    MailMessage EMail = new MailMessage();
    EMail.To = "d@s.com";
    EMail.From = "r@a.com";
    EMail.Cc = "s@a.com";
    EMail.Subject = "Test Email";
    EMail.Body = "Here is the body of our email";
    SmtpMail.SmtpServer = "localhost";
    try{
      SmtpMail.Send(EMail);
    }
    catch (Exception exc){
      Response.Write("Send failure: " + exc.ToString());
    }
    }