비주얼 웹 개발자 | 사이트는 로컬에서는 작동하지만 웹 서버에서는 작동합니다. 런타임 오류

비주얼 웹 개발자 | 사이트는 로컬에서는 작동하지만 웹 서버에서는 작동합니다. 런타임 오류

Microsoft Visual Web Developer 2010 Express를 사용하여 사이트를 구축할 예정이며, 구축한 컴퓨터에서 사이트를 컴파일하면 디버그를 사용하여 작동하지만 이를 제공해야 하는 웹 서버에서는 런타임 오류가 발생합니다. 저는 기본 템플릿러를 사용하여 처음부터 작업을 진행하고 있습니다. 그래서 내가 접근하려고 할 때http://gametek.me/V5/MSVWD에서 디버그를 사용할 때 런타임 오류가 발생합니다. 완벽하게 작동합니다. 무슨 아이디어가 있나요?

프로그램의 기본 코드

<%@ Page Title="Home Page" Language="VB" MasterPageFile="~/Site.Master" AutoEventWireup="false"
    CodeFile="Default.aspx.vb" Inherits="_Default" %>

<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
    <h2>
        Welcome to ASP.NET!
    </h2>
    <p>
        To learn more about ASP.NET visit <a href="http://www.asp.net" title="ASP.NET Website">www.asp.net</a>.
    </p>
    <p>
        You can also find <a href="http://go.microsoft.com/fwlink/?LinkID=152368&amp;clcid=0x409"
            title="MSDN ASP.NET Docs">documentation on ASP.NET at MSDN</a>.
    </p>
</asp:Content>


웹.구성

<?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>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>

  <connectionStrings>
    <add name="ApplicationServices"
         connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnetdb.mdf;User Instance=true"
         providerName="System.Data.SqlClient" />
  </connectionStrings>

  <system.web>
    <compilation debug="false" strict="false" explicit="true" targetFramework="4.0" />

    <authentication mode="Forms">
      <forms loginUrl="~/Account/Login.aspx" timeout="2880" />
    </authentication>

    <membership>
      <providers>
        <clear/>
        <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices"
             enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false"
             maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10"
             applicationName="/" />
      </providers>
    </membership>

    <profile>
      <providers>
        <clear/>
        <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/"/>
      </providers>
    </profile>

    <roleManager enabled="false">
      <providers>
        <clear/>
        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" />
        <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" />
      </providers>
    </roleManager>

  </system.web>

  <system.webServer>
     <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>
</configuration>
<!-- Web.Config Configuration File -->

오류 스크린샷 로컬로 갈 때 오류가 발생했습니다.

답변1

편집됨

파서 오류 메시지를 읽었습니까?

There are multiple root elements. Line 13, position 4

기본적으로 선언한 라인 11에서 web.config XML 트리를 닫았습니다.</configuration>

해당 줄을 모두 함께 제거하거나 파일 끝으로 이동해야 합니다.

그런데, 이 파일이 개발 중에 작동했을 리가 없습니다. 유효한 XML이 아닙니다.

관련 정보