顯示我用一個處理程序來獲取和使用下面的代碼顯示在瀏覽器窗口中的PDF:PDF不會在瀏覽器窗口中
byte[] byt = RetrieveDocument(int.Parse(context.Request.Params["id"]), context.Request.Params["title"]);
string file = WriteDocumentFilePDF(byt);
HttpContext.Current.Response.ContentType = "application/pdf";
HttpContext.Current.Response.AddHeader("content-length", byt.Length.ToString());
HttpContext.Current.Response.AddHeader("Content-Disposition", "inline; filename=programdetails.pdf");
HttpContext.Current.Response.BinaryWrite(byt);
HttpContext.Current.Response.End();
功能WriteDocumentFilePDF成功的PDF寫入temp目錄。我有上面的代碼在不同的應用程序中正常工作。我錯過了什麼嗎?