码迷,mamicode.com
首页 > 其他好文 > 详细

PDF cannot be shown correctly

时间:2015-08-04 15:30:24      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

There is a confused issue, PDF cannot be shown properly in object tag. If the PDF file name includes japanese, it works fine. Otherwise, it cannot display while file name is english.

<object data="D:\Materials\Policies\AA.pdf" type="application/pdf" width="300" height="200">
</object> 

 Resolution:

<object data="InquiryDetail\LoadPDFFile?filename=@Server.UrlEncode(Model.PDFFilePath.Encrypted())" type="application/pdf" width="300" height="200">
</object> 

 

public ActionResult LoadPDFFile(InquirDetailModel model)
{
	sting fileName=HttpContext.Request.QueryString["filename"].Decrypted();
	var stream =new FileStream(fileName,FileMode.Open);
	return File(stream,"application/pdf");
}

 

PDF cannot be shown correctly

标签:

原文地址:http://www.cnblogs.com/CrystalWind/p/4701881.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!