0

我在工作门户网站上工作。在那,我有求职者注册表。在那个求职者上传简历中。我只在数据库中保存简历文件名,在本地文件夹中保存实际简历。在另一个网络表单中,我想在 div 标签中显示简历,就像在 naukri.com 的更新/查看个人资料中一样。那么我该怎么做呢?我可以从数据库中检索简历文件名。所以,请任何人建议我任何解决方案。提前致谢。

4

1 回答 1

0
// How to: Create a new package as a Word document.
public static void CreateNewWordDocument(string document)
{
   using (WordprocessingDocument wordDoc = WordprocessingDocument.Create(document, WordprocessingDocumentType.Document))
   {
      // Set the content of the document so that Word can open it.
      MainDocumentPart mainPart = wordDoc.AddMainDocumentPart();

      SetMainDocumentContent(mainPart);
   }
}

// Set content of MainDocumentPart.
public static void SetMainDocumentContent(MainDocumentPart part)
{
   const string docXml =
@"<?xml version=""1.0"" encoding=""UTF-8"" standalone=""yes""?>
<w:document xmlns:w=""http://schemas.openxmlformats.org/wordprocessingml/2006/main"">
    <w:body><w:p><w:r><w:t>Hello world!</w:t></w:r></w:p></w:body>
</w:document>";

    using (Stream stream = part.GetStream())
    {
       byte[] buf = (new UTF8Encoding()).GetBytes(docXml);
       stream.Write(buf, 0, buf.Length);
    }
}

这里取

从这里开始的另一个不错的教程

于 2013-09-26T11:40:24.820 回答