目前,我正在嘗試此:在WebBrowser控件的OpenXML SDK WordprocessingDocument顯示
using DocumentFormat.OpenXml.Packaging;
using (WordprocessingDocument wordDoc = WordprocessingDocument.Open(fileNameDocx as string, true))
{
var xdoc = wordDoc.MainDocumentPart;
mainWebBrowser.NavigateToString(xdoc.Document.OuterXml.ToString());
}
但這只是給了我格式化的文本,沒有。是否有可能在這樣的瀏覽器控件中顯示「.docx」?
你有沒有看到這個http://stackoverflow.com/questions/10681035/vsto-integration-in-asp-net-web-application和 – Kiru