我有在控制台中创建文件的基本代码(见下文)。但我正在编写一个 MVC 应用程序,所以我需要将该 XML 文档作为 ActionResult 返回......我已经在网上搜索了 2 个小时,寻找一个简单的没有运气的例子..
我要添加什么以使其成为 ActionResult ?
string filePath = @"C:\temp\OpenXMLTest.docx";
using (WordprocessingDocument doc = WordprocessingDocument.Create(filePath, WordprocessingDocumentType.Document))
{
//// Creates the MainDocumentPart and add it to the document (doc)
MainDocumentPart mainPart = doc.AddMainDocumentPart();
mainPart.Document = new Document(
new Body(
new Paragraph(
new Run(
new Text("Hello World!!!!!")))));
}