文檔首頁>>FastReport中文文檔>>設(shè)置網(wǎng)絡(luò)處理程序
設(shè)置網(wǎng)絡(luò)處理程序
WebReport 要求在 web.config 文件中設(shè)置特定的處理程序。在 Visual Studio 中創(chuàng)建報告對象時,必要的行會自動寫入配置文件。WebReport 組件會在應(yīng)用程序運行時檢查指定配置的可用性。如果在 web.config 文件中找不到所需的行,就會出錯,要求更改文件。
與 IIS6 服務(wù)器一起使用時,web.config 文件應(yīng)包含以下行:
<system.web> … <httpHandlers> <add path="FastReport.Export.axd" verb="*" type="FastReport.Web.Handlers.WebExport"/> </httpHandlers> … </system.web>
點擊復(fù)制
<system.webServer> … <handlers> <add name="FastReportHandler" path="FastReport.Export.axd" verb="*" type="FastReport.Web.Handlers.WebExport"/> </handlers> … </system.webServer>
點擊復(fù)制
通過 URL 檢查 WebReport 處理程序是否正常工作:
http://yoursite/app_folder/FastReport.Export.axd
信息消息會顯示 FastReport 的版本和服務(wù)器時間。
如需下載fastreport最新試用版,請點產(chǎn)品名跳轉(zhuǎn)產(chǎn)品下載頁>>