1、修改配置webconfig文件

IIS6:

<system.web>

  <httpHandlers>

    <add path="FastReport.Export.axd" verb="*" type="FastReport.Web.Handlers.WebExport"/>

  </httpHandlers>

</system.web>

IIS7:

<system.webServer>

  <validation validateIntegratedModeConfiguration="false"/>

  <handlers>

    <remove name="FastReportHandler"/>

    <add name="FastReportHandler" path="FastReport.Export.axd" verb="*" type="FastReport.Web.Handlers.WebExport" />

  </handlers>

</system.webServer>

05-02 20:09