tags:

views:

47

answers:

1
Response.ContentType = "Application/pdf";
string FilePath = Server.MapPath("reliance.pdf");
 Response.WriteFile(FilePath);
        Response.End();

How can we resize the pdf file before it gets open in browser....can you tell me? thanks

+1  A: 

take a look at this, you can customise a lot with some parameters:

http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf

hubbl