Hi,
I am using below code to print pdf document.This works fine if i run it in project without virtual directory (web site with file system). when i test it in project with virtual directory it does not print pdf.
Dim psInfo As New ProcessStartInfo()
psInfo.FileName = "C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe"
psInfo.Arguments = [String].Format("/s /o /h /p{0}", "C:\inetpub\wwwroot\TestWeb\Test.pdf")
psInfo.WindowStyle = ProcessWindowStyle.Hidden
psInfo.CreateNoWindow = True
psInfo.UseShellExecute = True
Dim process__1 As Process = Process.Start(psInfo)
Please share your experiences to solve it.
Thanks
...
Go to the complete details ...