Я сгенерировал PDF-файл, используя iTextSharp, при его создании он автоматически сохраняется в месте, указанном в моем коде на сервере, а не на стороне клиента, и, конечно, ничего не сообщая пользователю.
Мне нужночтобы отправить его клиенту, и мне нужно предложить диалоговое окно, чтобы спросить пользователя, где он хочет сохранить свой PDF ..
как я могу это сделать, пожалуйста?
это мой PDFкод:
using (MemoryStream myMemoryStream = new MemoryStream())
{
Document document = new Document();
PdfWriter PDFWriter = PdfWriter.GetInstance(document, myMemoryStream);
document.AddHeader("header1", "HEADER1");
document.Open();
//..........
document.Close();
byte[] content = myMemoryStream.ToArray();
// Write out PDF from memory stream.
using (FileStream fs = File.Create(HttpContext.Current.Server.MapPath("~\\report.pdf")))
{
fs.Write(content, 0, (int)content.Length);
}
РЕДАКТИРОВАТЬ
это пример результата, который я хочу http://examples.extjs.eu/?ex=download
благодаря вашим ответам я изменил свойкод для этого:
HttpContext.Current.Response.ContentType = "application/pdf";
HttpContext.Current.Response.AppendHeader( "Content-Disposition", "attachment; filename=test.pdf");
using (MemoryStream myMemoryStream = new MemoryStream())
{
Document document = new Document();
PdfWriter PDFWriter = PdfWriter.GetInstance(document, myMemoryStream);
document.AddHeader("Content-Disposition", "attachment; filename=wissalReport.pdf");
document.Open();
//..........
document.Close();
byte[] content = myMemoryStream.ToArray();
HttpContext.Current.Response.Buffer = false;
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.ClearContent();
HttpContext.Current.Response.ClearHeaders();
HttpContext.Current.Response.AppendHeader("content-disposition","attachment;filename=" + "my_report.pdf");
HttpContext.Current.Response.ContentType = "Application/pdf";
//Write the file content directly to the HTTP content output stream.
HttpContext.Current.Response.BinaryWrite(content);
HttpContext.Current.Response.Flush();
HttpContext.Current.Response.End();
но я получаю эту ошибку:
Uncaught Ext.Error: You're trying to decode an invalid JSON String:
%PDF-1.4 %���� 3 0 obj <</Type/XObject/Subtype/Image/Width 994/Height 185/Length 13339/ColorSpace/DeviceGray/BitsPerComponent 8/Filter/FlateDecode>>stream x���|E�
...........
я абсолютно уверен, что мой itextsharp для создания PDF является правильным, потому что я могу сохранить его на сервере, но это не такчто мне нужно сделать, когда я пытаюсь отправить его клиенту, я получил ошибку выше
заранее спасибо