Tag: byte

流式传输一个byte 以在jquery模式中加载为PDF(MVC3)

当使用MVC3单击某个链接时,我正在尝试流式传输一个byte []以加载到jquery模式中。 在我的控制器中我有 public ActionResult GetTermsAndCondtion() { byte[] termsPdf = GetTermsAndConditions(DateTime.Now); return new FileContentResult(termsPdf, “application/pdf”); } 我有一个观点 @Html.ActionLink(“Terms and Conditon”,”GetTermsAndCondtion”,”Customer”, new{id=”terms”}) 这将在选项卡中打开pdf文件。 但我想在一个模态中打开byte []作为pdf文件。 任何帮助?