调试.aspx页面时怎么都通不过,出现下面错误页将Web.config文件中 <identity impersonate="true" />  改为 impersonate="false"就行了,这是问什么?
<?xml version="1.0" encoding="utf-8"?><!--
  有关如何配置 ASP.NET 应用程序的详细信息,请访问
  http://go.microsoft.com/fwlink/?LinkId=169433
  --><configuration>    <system.web>
      <compilation debug="true" targetFramework="4.5.2" />
      <httpRuntime targetFramework="4.5.2" />
        <identity impersonate="false" />  <!-- 设为true页面就调试通不过-->
    </system.web></configuration>