How to run crystal reports remotely with .net 2.0
I have three machines: machine 1 has sql database. Machine 2.0 has crystal reports 9.0 with reports compiled and running of the database on machine 1. Machine 3 is the web server where I run asp.net 2.0 application that calls reports from machine 2. error: LoadSaveReportException: Load report failed error, when I try the following in my code:
string path = "w:\\inetpub\\wwwroot\\Reports\\ImmunizeUnauth.rpt ";
crReportDocument.Load(path);
I have made sure the permissions are fully open for ASPNET account on the Reports Directory.
I have mapped the machine to w drive of my web server. I am confused. How can i make it work
|