Web调用FastReport的配置问题

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>

你可能感兴趣的:(Web调用FastReport的配置问题)