今天在部署Coolite项目时出现错误。但是在Win7和XP系统下系统运行都正常,在Server2008环境下部署出现如下问题:
The web.config file for this project is missing the required AjaxRequestModule
后来在网上查阅了相关文档发现时IIS7的问题,需要在webConfig中的<system.webServer>节点下
添加如下配置即可:
1 2 3 4 5 6 7 8 9 |
<system.webServer> <validation validateIntegratedModeConfiguration="false"/> <modules> <add name="AjaxRequestModule" preCondition="managedHandler" type="Coolite.Ext.Web.AjaxRequestModule, Coolite.Ext.Web" /> </modules> <handlers> <add name="AjaxRequestHandler" verb="*" path="*/coolite.axd" preCondition="integratedMode" type="Coolite.Ext.Web.ResourceManager"/> </handlers> </system.webServer> |