Solution for this error is,
- Go the the Web.config file in your ASP.NET application
- Navigate to the below line
<add key="ChartImageHandler" value="storage=file;timeout=20;dir=c:\TempImageFiles\;"> </add>
- Just remove the dir element from the add attribute like below
<add key="ChartImageHandler" value="storage=file;timeout=20;"> </add>
- Publish your app.
Another error occurred---> The temp directory in chart handler configuration is not accessible [C:\inetpub\wwwroot\SSTS\].
ReplyDeleteThanks for the solution after removing dir=c:\TempImageFiles\;">, it work for me.
ReplyDelete