Why do I get blank page after publish Crystal Reports 13 to IIS with ASP.NET 4.6?

Programming, error messages and sample code > ASP.NET
This error message appears because application is not able to find crystalreportviewers13 folder.
 
Resolution:
 
Copy crystalreportviewers13 to your site root and Add below lines in web.config of the web application.
 
 
<configSections>
    <sectionGroup name="businessObjects">
      <sectionGroup name="crystalReports">
        <section name="rptBuildProvider" type="CrystalDecisions.Shared.RptBuildProviderHandler, CrystalDecisions.Shared, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, Custom=null" />
           <section name="crystalReportViewer" type="System.Configuration.NameValueSectionHandler" />
      </sectionGroup>
    </sectionGroup>
</configSections>
 <businessObjects>
      <crystalReports>
        <rptBuildProvider>
          <add embedRptInResource="true" />
        </rptBuildProvider>
        <crystalReportViewer>
              <add key="ResourceUri" value="~/crystalreportviewers13" />
      </crystalReportViewer>
      </crystalReports>
 </businessObjects>