Crystal report export problem

  • Thread starter Thread starter Holly
  • Start date Start date
H

Holly

I have a web page in C# that export the crystal report
to pdf files.
I can export the pdf files on my local driver but if
I change the file path to a remote server, the program
doesn't give any error just no file created.
I could first save the file to my local disk then using
FileInfo class to move the file to the remote disc so it
should not be a security problem.

I wordered if myReport.Export() has a problem to see the
remote server? Any idea?

Thanks.
Holly
 
Hi,

Probably that's the problem, permission, under what accoutn is the web app
running?

also remember that the asp.net app do not see the mounted drives you have,
you have to reference the remote server using its UNC: \\servername\path

cheers,
 
Back
Top