//定义一个URL,直接传到页面上,会自动调用系统发邮件功能
this.strUrl = "mailto:asdf@asdfas.com&subject=" +this.labTitle.Text+ "&body=内容"
this.mstrEncodeUrl = "mailto:asdf@asdfas.com&subject=" + this.Page.Server.UrlEncode(this.labTitle.Text)+"&body="+ this.Page.Server.UrlEncode(_Title);
//传到页面上
this.Page.Server.UrlEncode(strUrl);