用ASP.NET 2.0的NET.MAIL发送邮件乱码
只要是中文的标题,中文附件名,都是乱码,而正文不会,不知道要如何解决ML.BodyEncoding = System.Text.Encoding.GetEncoding(theCharSet) '用gb2312来引用 --------------------编程问答-------------------- 在CONFIG 里已经设置:<globalization responseEncoding="gb2312" requestEncoding="gb2312" fileEncoding="gb2312" culture="zh-CN"/>
--------------------编程问答-------------------- 所有的格式一致就可以了。 --------------------编程问答-------------------- TO:webhaitao
我不明白,请指教 --------------------编程问答-------------------- 我怎么没遇过?! --------------------编程问答--------------------
myMail.BodyFormt=MailFormat.Text; //设置邮件格式为文本格式
myMail.BodyFormt=MailFormat.Html; //设置邮件格式为HTML格式
补充:.NET技术 , ASP.NET