我需要在aspx页面内显示pdf文件(使用asp.net控件)点击按钮。
我目前执行以下代码,该代码在Web浏览器中显示pdf文件。
string folderPath =
Server.MapPath(ConfigurationManager.AppSettings["serverFolderPath"].ToString());
foreach (string file in Directory.GetFiles(folderPath))
{
WebClient user = new WebClient();
Byte[] fileBuffer = user.DownloadData(file);
if (fileBuffer != null)
{
Response.ContentType = "application/pdf";
Response.AddHeader("content-length", fileBuffer.Length.ToString());
sponse.BinaryWrite(fileBuffer);
}
}
答案 0 :(得分:0)
如果您的folderPath正确,请尝试以下代码 它的工作
pivot