IIS7上Web部署:
?
(1)现象:服务器上需要的各种配置和dll添加完成后,检索数据时,页面刷新,rdlc报表不能加载。
?
解决方法:
IIS7上ReportingViewer的配置:(开发环境VS2008)
在webconfig中添加如下信息:
? <system.webServer>
??? <handlers>
???? ...
????? <add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler,Microsoft.ReportViewer.WebForms,Version=9.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a"/>
????? ...???
?</handlers>
? </system.webServer>
?
(2)“Cannot use a leading .. to exit above the top directory. ”
出错信息如下:
出错原因:始终没弄明白为什么,望指教。 解决方法:打开Application Pools ,选择部署项目,右键“advanced Settings” ――将“Enable 32-bit Applications” 设置为True,然后重启IIS。OK。
?
?
?
?
?