
July 1st, 2009, 12:13 PM
|
|
Contributing User
|
|
Join Date: Aug 2005
Posts: 552
  
Time spent in forums: 5 Days 16 h 42 m 30 sec
Reputation Power: 8
|
|
|
ASP.Net/VB.Net - Save pdf file to PC
Hi,
I have a Crystal report that I save as a PDF file. I found some code that does export the report to a PDF format. It works when I run it on the server, but when I run it from my PC to save it locally, it's not working. I am not sure if I can still use what I have or whether I need to redo it altogether. Can somebody point me in the right direction?
this is how I'm saving my report to a PDF file:
Code:
repdoc.ExportToHttpResponse(ExportFormatType.Porta bleDocFormat, Response, True, "test")
|