我正在尝试使用 Interop.Word.Application 打开 .docx 文件并转换为 PDF。它作为控制台应用程序工作,但如果我在我的 Web 应用程序中使用它,它就不起作用。我试图查看文件夹的权限。我完全控制了“网络服务”,但我仍然得到未在 word.Documents.Open 中设置的对象引用。你能告诉我可能是什么问题吗?我被这个错误困住了。请告诉我。我很感激任何建议。谢谢你。
Microsoft.Office.Interop.Word.Application word = new Microsoft.Office.Interop.Word.Application();
object oMissing = System.Reflection.Missing.Value;
word.Visible = false;
word.ScreenUpdating = false;
string fileName = @"c:\OUTPUT\test.docx");
Document doc = word.Documents.Open(filename, ref oMissing,
ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,
ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,
ref oMissing, ref oMissing, ref oMissing, ref oMissing);
doc.Activate();