If you have worked with ASP.Net web applications which include number of crystal reports as part of that, you might have experienced it takes a long time to build the web site. This happens, because by default crystal reports are set to be embedded as a resource.In default your “web.config” displays as follows.
To resolve this, you can simply modify the embedRptInResource=”false” as follows.
<businessObjects>
<crystalReports>
<rptBuildProvider>
<add embedRptInResource="false"/>
</rptBuildProvider>
</crystalReports>
</businessObjects>
Filed under: ASP.NET, CodeProject, Crystal Report Tagged: ASP.Net, C#, Crystal Report, Web Performance