解析服务此请求所需的资源时发生错误

问题描述 投票:0回答:2

我有一个新的空白页面,当我尝试查看该页面时,会显示如下错误页面:

enter image description here

这是页面来源:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Test12.aspx.cs" Inherits="AEIC.Test12" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>

    </div>
    </form>
</body>
</html>

这是背后的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace AEIC
{
    public partial class Test12 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }
    }
}
c# asp.net visual-studio-2013
2个回答
0
投票

它的作品:

1- 将“构建操作”设置为内容

2- 将“复制到输出目录”设置为始终复制

这都是关于 <%@ Page %> 标签的。

其他几个解决方案:

  1. 使用 CodeFile 而不是 CodeBehind(但请记住,这会以纯文本形式公开源代码并在运行时进行编译);

  2. 确保您的 Inherits 属性包含正确的命名空间(如果使用)。您可以在“应用程序”选项卡下的“项目属性”页面中找到它


0
投票

我刚刚遇到这个问题,

该文件夹已经是一个应用程序,因此我解决该问题的方法是删除 bin 文件夹并清理和构建解决方案中的所有项目。

© www.soinside.com 2019 - 2024. All rights reserved.