by Ciege » Fri May 07, 2010 6:21 pm
You can put it wherever you want. Use Report.Setup to set the report location.
I use this to set the logfile name and save it to a specific location. I also use it to time/date stamp each report so I do not run into the possibility of overwriting an existing report.
- Code: Select all
string LogFile = @"c:\temp\Report\" + strDateTimeStamp + @"\My_Report_Name.xml";
Report.Setup(ReportLevel.Debug, LogFile, true);
If this or any response has helped you, please reply to the thread stating that it worked so other people with a similar issue will know how you fixed your issue!
Ciege...