Print Pdf directly (without preview) from client side (using asp.net)

G

Guest

Hi

I need help to Print Pdf File directly
without preview from client side

To solve problem I used

This C# code

Response.Buffer = true;
Response.ClearContent();
Response.ClearHeaders();
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.ContentType = "application/pdf";
Response.BinaryWrite(memStream.ToArray());
Response.End();

and how you can see

I Clean response and Use BinaryWrite

so I don't know how to insert this html code

<script language="javascript">
window.print();
</script>


I tried also with frameset (don't work)
and I tried also

with

<script language="javascript">
var oWnd = window.open("TestPrint.Aspx", "tstPrint");
oWnd.print();
</script>

it shows message "file TestPrint.Aspx not found".


Can you help me????

Thanks in advance!!!

Bye bye
 
B

bruce barker

you can not directly print a pdf file in a browser, nor can you include
javascript. when the browser detects a pdf file, it looks an activex control
assigned to the mime type, in this case adobe reader. it then loads adobe
reader active/x control, and gives the control the url. the reader control
then requests and downloads the content (if you have ie 6.0 with service
packs, the download will come from the cache, otherwise the pdf is
downloaded again) and renders it.

-- bruce (sqlwork.com)
 
R

Raterus

Just tested this, and it works, except the pdf does have to load up in the acrobat plugin, but you do get prompted for the print dialog as well.

<iframe> that holds the pdf, and only the pdf
then from the main page, use this javascript to print the iframe.

<script type="text/javascript">
function pdfPrint(iframe)
{
iframe.focus();
iframe.print();
}

pdfPrint(iframe_id);
</script>

You can use Page.RegisterStartupScript to add this script easily from asp.net.

--Michael
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top