How to write from the popup to the parent page?

Asked

Viewed 55 times

0

I am in doubt in the following situation, I am returning a PDF to the popup (Page son). I would like to close this Popup and Write(pdfDoc) on the parent page)

//A propriedade ContentType especifica o tipo de conteúdo HTTP para a resposta. 
//Se nenhum ContentType for especificado, o padrão é text / HTML.
Response.ContentType = "application/pdf"; 

//O método AddHeader adiciona um novo cabeçalho e valor HTML à resposta enviada
//ao cliente. Ele não substitui um cabeçalho existente do mesmo nome. Depois que 
//um cabeçalho foi adicionado, não pode ser removido.
Response.AddHeader("content-disposition", "attachment;filename=NotaFiscal.pdf");

//Resposta do servidor, escrever um fluxo de saida (.PDF)
Response.Write(pdfDoc); 
Response.End();

As shown in the image Popup(black) Parent page(white part) inserir a descrição da imagem aqui

  • You are not writing the pdf in a pop, you are responding the file to download, instead you want to render it on the screen?

  • I would like to answer on the parent page

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.