gpt4 book ai didi

c# - 当文件位于应用程序文件夹之外时将 PDF 嵌入 HTML

转载 作者:行者123 更新时间:2023-11-30 18:36:13 25 4
gpt4 key购买 nike

我将 PDF 文件保存在 Web 应用程序之外的服务器文件夹中(出于安全原因),我需要使用 google docs 预览这些文件。

<iframe src="http://docs.google.com/gview?url=????&embedded=true" 
style="width:718px; height:700px;" frameborder="0"></iframe>

到目前为止,我通过以文件路径作为参数的形式重定向使它们可供下载:

string path = Request.QueryString["src"];
int index = Request.QueryString["src"].ToString().LastIndexOf("\\");
string filename = Request.QueryString["src"].ToString().Substring(index + 1);
FileStream fileStream = new FileStream(path, FileMode.Open);
int fileSize = (int)fileStream.Length;
byte[] Buffer = new byte[fileSize];
fileStream.Read(Buffer, 0, fileSize);
fileStream.Close();
Response.ContentType = ContType(path);
Response.AddHeader("content-disposition", "attachment;filename=\"" + filename);
Response.BinaryWrite(Buffer);
Response.End();

我尝试添加 url file.aspx?src=C:\... 作为 google doc iframe 的 url 的参数,比如

http://docs.google.com/gview?url=file.aspx?src=C:\...

但它不起作用。

有没有其他方法可以将 URL 分配给流?

最佳答案

你可以尝试这样的事情:

<iframe src="http://docs.google.com/gview?url='file.aspx?src='C:\storage\test.pdf''&embedded=true" 
style="width:718px; height:700px;" frameborder="0"></iframe>

根据需要交替使用 ' 和 "。

作为旁注,我建议您不要将完整的文件路径从服务器发送到客户端的浏览器。这听起来像是在你家的前门放了一张 50 英寸电视、蓝光播放器、电脑和其他贵重元素的位置草图,供任何潜在的小偷考虑。

作为替代方案,您可以使用数据库或带有 ID 的 XML 文件来识别每个文件,并从那里读取文件路径。

关于c# - 当文件位于应用程序文件夹之外时将 PDF 嵌入 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13987924/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com