1

私はこれを何時間も行ってきましたが、同じエラーが出続けています。どうしてか分かりません !masterpage 用の最初の Web フォームを作成することができました。どういうわけか、後続の Web フォームで同じエラーが発生しています。

これは私が作成した Web フォームです。

<%@ Page Title="" Language="C#" MasterPageFile="~/EIDShopMain.Master" AutoEventWireup="true" CodeBehind="WebForm3.aspx.cs" Inherits="mainWebsite_EID_Shop_.WebForm3" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
</asp:Content>

ブラウザで表示したいとき:

Server Error in '/' Application.
Parser Error  Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. 
Parser Error Message: Could not load type 'mainWebsite_EID_Shop_.Global'.
Source Error: 
Line 1:  <%@ Application Codebehind="Global.asax.cs" Inherits="mainWebsite_EID_Shop_.Global" Language="C#" %>

更新:これは ASP.Net Web アプリケーション プロジェクトです。

WebForm3 の分離コード:

namespace mainWebsite_EID_Shop_
{
    public partial class WebForm3 : Page
    {
    }
}

Webフォームが機能する場合と機能しない場合がある理由を誰でも説明できますか。

Update2:その他のエラー:

Parser Error Description: An error occurred during the parsing of a resource required to  service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load type 'mainWebsite_EID_Shop_.EIDShopMain'.
Source Error:
Line 1: <%@ Master Language="C#" AutoEventWireup="true" CodeBehind="EIDShopMain.master.cs" Inherits="mainWebsite_EID_Shop_.EIDShopMain" %>
Line 2:
Line 3: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">;
4

1 に答える 1