Web调用FastReport的配置问题

时间:2016-01-11 17:57:27   收藏:0   阅读:2533

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>

原文:http://www.cnblogs.com/sayshap/p/5121657.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!