private void Button1_Click(object sender, System.EventArgs e)
{
try
{
System.Web.Mail.MailMessage myMail=new MailMessage();
myMail.From = from.Text;
myMail.To = to.Text;
myMail.Subject = subject.Text;
// myMail.Priority = MailPriority.Low;
// myMail.BodyFormat = MailFormat.Text;
myMail.Body = content.Text;
SmtpMail.SmtpServer="smtp.163.com"; //your smtp server here
SmtpMail.Send(myMail);    
Response.Write ("信件发送成功");
}   
catch(Exception ex)
{
Response.Write (ex.Message);   
}
}执行后出现错误, 错误提示:      Could not access 'CDO.Message' object. 
怎样解决呢?? 谢谢