Running the ASP.Net report writer tries to write a config file?
When using Fast Reports to create a report on our ASP.Net web cluster we get the following error:
Access to the path 'C:\Documents and Settings\Default User\Local Settings\Application Data\FastReport\' is denied.
The problem we are having is that the filesystem is read-only for ASP.Net. Is there some way to suppress it so that FastReports won't try to write out a config file? The config file it creates has pointless data in it anyway for a server.
Access to the path 'C:\Documents and Settings\Default User\Local Settings\Application Data\FastReport\' is denied.
The problem we are having is that the filesystem is read-only for ASP.Net. Is there some way to suppress it so that FastReports won't try to write out a config file? The config file it creates has pointless data in it anyway for a server.
Comments
Hey Jordan,
I haven't been on here in ages.
In case you haven't found the solution yet, you need to set a property:
FastReport.Utils.Config.WebMode=true;
That will prevent it from trying to read that file.
Bryan