It's all about presentation...
My last post, you may notice has code snippets that look somewhat professional. I found a cool online tool called Code2html It turns this: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Net.Mail; public partial class _Default : System.Web.UI.Page {     protected void Page_Load(object sender, EventArgs e)     {     }     protected void Button1_Click(object sender, EventArgs e)     {         MailMessage message = new MailMessage("FROM@domain.foo", "TO@domain.foo", "SYNCHRONOUS MESSAGE", "MESSAGE BODY");         SmtpClient smtp = new SmtpClient();         smtp.Send(message);     }     protected void Button2_Click(object sender, EventArgs e)     {         MailMessage message = new MailMessage("FROM@domain.foo", "TO@domain.foo", "ASYNCHRONOUS MESSAGE", "MESSAGE BODY");         SmtpClient smtp = new SmtpClient...