asp.net web config runtimeerror

时间:2013-04-26 13:50:16

标签: asp.net-mvc web-config hosting

我在这里搜索了同样的问题Asp.net - <customErrors mode="Off"/> error when trying to access working webpage,但是当我喜欢它的时候被告知,我没有得到任何反应相同的运行时错误;

这是我的web.config

<system.web>
<customErrors mode="Off"/>
<compilation debug="true" strict="false" explicit="true" />
<authentication mode="None"/>
<compilation targetFramework="4.5" />
<httpRuntime requestValidationMode="2.0" />
<authentication mode="Forms">
  <forms loginUrl="~/Account/Login" timeout="2880" />
</authentication>
<pages validateRequest="false">
  <namespaces>
    <add namespace="System.Web.Helpers" />
    <add namespace="System.Web.Mvc" />
    <add namespace="System.Web.Mvc.Ajax" />
    <add namespace="System.Web.Mvc.Html" />
    <add namespace="System.Web.Optimization" />
    <add namespace="System.Web.Routing" />
    <add namespace="System.Web.WebPages" />
  </namespaces>
</pages>

1 个答案:

答案 0 :(得分:2)

似乎你有2次编译和认证标签。删除重复项。