How to Open a pdf file in the webpage

sridharb

New member
Joined
Feb 15, 2006
Messages
3
Programming Experience
5-10
Hello All,

I want to open a pdf file in the same webpage whenever the user selects a pdf file.


Cheers
 
The easiest way to to direct the user to the PDF file. Here is what I have done:

VB.NET:
Dim strPDFPath as String
' Path where the order that was just taken is saved to
strPDFPath = ' Location of PDF File
' Send the user to their file
Response.Redirect(strPDFPath, False)
 
Back
Top