gpt4 book ai didi

c# - 如何使用C#在网站页面中加载PDF文件

转载 作者:行者123 更新时间:2023-11-30 22:46:28 25 4
gpt4 key购买 nike

如何使用C#在网页中加载PDF文件

最佳答案

这是将文件发送到浏览器的方法。

http://support.microsoft.com/kb/306654

private void Page_Load(object sender, System.EventArgs e)
{
//Set the appropriate ContentType.
Response.ContentType = "Application/pdf";
//Get the physical path to the file.
string FilePath = MapPath("acrobat.pdf");
//Write the file directly to the HTTP content output stream.
Response.WriteFile(FilePath);
Response.End();
}

关于c# - 如何使用C#在网站页面中加载PDF文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2631084/

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