这就是我varbinary
从数据库中检索 pdf 并在我的 asp.net 页面中查看的方式,
byte[] pdfFile= null;
var obj = DBContext.MyTable.Where(x => x.ID == 1 ).SingleOrDefault().pdfColumn;
pdfFile = new byte[obj.Length];
if (pdfFile!= null)
{
Response.ClearHeaders();
Response.Clear();
Response.AddHeader("Content-Type", "application/pdf");
Response.AddHeader("Content-Length", pdfFile.Length.ToString());
Response.AddHeader("Content-Disposition", "inline; filename=sample.pdf");
Response.BinaryWrite(pdfFile);
Response.Flush();
Response.End();
}
当我使用此代码查看我的 pdf 时,我收到了此消息
我的obj
回报喜欢
字节数组( pdfFile
) 的内容返回赞
而且我的pdf文件没有显示!我的代码有什么问题?