0

我正在尝试在我们的大学服务器中部署 Web 应用程序,但运行该页面时得到的只是“500-Internal server error”(您要查找的资源有问题,无法显示。)

上次我记得在网络配置中添加了一些东西,但我似乎不记得它是什么。我尝试添加:

<customErrors mode="Off">
  </customErrors>

但它似乎并没有解决它。

我应该在我的网络配置中添加什么才能正确显示错误?所以我会知道出了什么问题。

这是我的网络配置:

<?xml version="1.0"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>

  <!--show errors on server-->
  <customErrors mode="Off">
  </customErrors>

  <!--connection string-->
    <connectionStrings>
          <add name="igroup20_test2ConnectionString" connectionString="Data Source=Media.ruppin.ac.il;Initial Catalog=igroup20_test2;User ID=igroup20;Password=****" providerName="System.Data.SqlClient"/>
    </connectionStrings>

    <system.web>

    <!--define membership-->
    <membership defaultProvider="CustomizedProvider">
      <providers>
        <add name="CustomizedProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="igroup20_test2ConnectionString" applicationName="ScottsProject" minRequiredPasswordLength="4" minRequiredNonalphanumericCharacters="0"/>
      </providers>
    </membership>

    <!--define roles-->
        <roleManager enabled="true" defaultProvider="CustomizedRoleProvider">
            <providers>
                <add name="CustomizedRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="igroup20_test2ConnectionString" applicationName="/"/>
            </providers>
        </roleManager>

    <!--define profile properites-->
    <profile defaultProvider="CustomProfileProvider" enabled="true">
      <providers>
        <add name="CustomProfileProvider"
             type="System.Web.Profile.SqlProfileProvider"
             connectionStringName="igroup20_test2ConnectionString"
             applicationName="ScottsProject" />
      </providers>

      <!-- Define the properties for Profile... -->
      <properties>
        <add name="prof" type="String" serializeAs="String" />
      </properties>
    </profile>


        <authentication mode="Forms"/>

        <compilation debug="true" targetFramework="4.0">
      <!--<httpRuntime targetFramework="4.5"/>-->
            <assemblies>
                  <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                  <add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
                  <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
      </assemblies>
    </compilation>

    <!--handler for the ajaxupload control-->
    <httpHandlers>
      <add verb="*" path="AjaxFileUploadHandler.axd" type="AjaxControlToolkit.AjaxFileUploadHandler, AjaxControlToolkit" />
    </httpHandlers>


    </system.web>

  <!--handler for the ajaxupload control-->
  <system.webServer>
    <handlers>
      <add name="AjaxFileUploadHandler" verb="*" path="AjaxFileUploadHandler.axd" type="AjaxControlToolkit.AjaxFileUploadHandler, AjaxControlToolkit" />
    </handlers>

  </system.webServer>

 </configuration>

编辑

我补充说:

 <system.web>
    <customErrors mode="Off"/>
        <compilation debug="true"/>
  </system.web>

和:

<system.webServer>
    <httpErrors errorMode="Detailed" />
        <asp scriptErrorSentToBrowser="true"/>
        <validation validateIntegratedModeConfiguration="false" />
</system.webServer>

但仍然只显示内部服务器错误消息..

4

2 回答 2

1

正如格兰特托马斯所说,这可能是配置文件本身的问题。

我发现确定的最简单方法是尝试通过 IIS 打开部分配置,然后如果配置文件出错,IIS 将抛出一个错误对话框。

因此,进入 IIS,选择有问题的网站,然后尝试打开其中一个配置部分,例如 .Net 错误页面或连接字符串,看看是否出现错误对话框。

于 2013-06-19T10:57:00.663 回答
0

这是配置文件的错误。

<customErrors mode="Off"/>

<compilation debug="true">

是重复的。

于 2013-06-19T11:27:19.430 回答