如何配置IIS 8.5以使用Asp.Net UpdatePanel?

时间:2017-03-31 09:24:57

标签: c# asp.net iis asp.net-ajax iis-8.5

我创建了一个Asp.Net Web表单项目,并使用UpdatePanel来阻止页面回发。更新面板在本地测试中工作正常,并且在Windows本地IIS中也能正常工作,但是当我在Windows Server 2012 R2上部署时,页面回发和更新面板不起作用。我还调试了HTML页面,它显示错误

  

系统未定义

我无法知道服务器端或项目内部是否存在问题。下面是web.config中System.Web和System.webServer的配置。

<system.web>
    <httpHandlers></httpHandlers>
    <httpRuntime targetFramework="4.5" />
    <httpModules>
      <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" />
    </httpModules>
  </system.web>
  <system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
    <modules>
      <remove name="ApplicationInsightsWebTracking" />
      <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" preCondition="managedHandler" />
    </modules>
    <handlers>
      <add name="Ajax" verb="POST,GET" path="ajax/*.ashx" type="Ajax.PageHandlerFactory, Ajax" />
    </handlers>
  </system.webServer>

1 个答案:

答案 0 :(得分:0)

ScripManager的引用存在问题。我添加了下载的软件包中的引用,然后工作。