Possible Duplicate:
How to render pdfs using C#
How to view PDF files using c#.net? I only have to view the PDF file, do not have to create or modify.
Possible Duplicate:
How to render pdfs using C#
How to view PDF files using c#.net? I only have to view the PDF file, do not have to create or modify.
you can try this. View PDF files in C#
It's C# and uses/wraps an open source C/C++ PDF library. code and compiled binary can be downloaded from Google. here!
A quick and easy way for this would be to use a WebBrowser
control (need the client has Adobe Reader installed) and navigate it to the PDF file you want to display.
Just use: webBrowser.Navigate("file:///" + url);
and you'll be able to display a PDF file.