我从我的数据库中将数据从我的 Web 应用程序导出为 HTML 格式的单词,这对我来说很好,我已将图像插入到记录中,文档也显示图像,对我来说一切正常,除非我保存该文件并发送到其他人.. ms word 将找不到指向该图像的链接
无论如何要将该图像保存在文档上,这样就不会出现路径问题
这是我的代码:StrTitle 包含所有 HTML,包括图像链接
string strBody = "<html>" +
"<body>" + strTitle +
"</body>" +
"</html>";
string fileName = "Policies.doc";
//object missing = System.Reflection.Missing.Value;
// You can add whatever you want to add as the HTML and it will be generated as Ms Word docs
Response.AppendHeader("Content-Type", "application/msword");
Response.AppendHeader("Content-disposition", "attachment; filename=" + fileName);
Response.Write(strBody);