除了txt文本可以,其它类型的附件都被损坏了,是为什么?急呀

解决方案 »

  1.   

    System.Web.Mail.MailMessage newMsg = new System.Web.Mail.MailMessage();
    newMsg.BodyFormat = System.Web.Mail.MailFormat.Html;
    newMsg.From = "[email protected]";
    newMsg.To = "[email protected]";
    newMsg.Subject = mailSubject;
    newMsg.Attachments.Add(new System.Web.Mail.MailAttachment("E:\\Contract Service.doc"));  
       
    System.Web.Mail.SmtpMail.SmtpServer = System.Configuration.ConfigurationSettings.AppSettings["SMTPSRV"];
    System.Web.Mail.SmtpMail.Send(newMsg);
    代码如上,请大家帮忙看看有什么问题吗,附件大小才10K,到底为什么?难道跟我的VS2003有关?