PDF,DOC和DOCX的ContentType

时间:2013-11-15 00:04:51

标签: c# asp.net

如何使用Visual Studio 2005为pdf,doc和docx提供内容类型,以便将文件附加到asp.net和c#中的电子邮件中。

当我尝试提供contenttype = "application/pdf""application/word"时。该文件保存为"applicationpdf""applicationword"

ContentType ct = new ContentType();
Attachment attach = new Attachment(myFile.InputStream, ct);
message.Attachments.Add(attach);

提前谢谢!!

0 个答案:

没有答案