ASP.net服务器错误' /'应用程序继承

时间:2016-10-25 15:11:53

标签: c# asp.net

当我向网页添加网页表单时,我不断收到以下错误: 说明:解析为此请求提供服务所需的资源时发生错误。请查看以下特定的解析错误详细信息并相应地修改源文件。

  

分析程序错误消息:无法加载类型' WebApplication9.WebForm11'。

如果我删除了Inherits部分,它将会运行。如果我在一个特定的引用上添加继承部分,它也会运行:Inherits="WebApplication9.GaugePro"

但如果我对其他任何东西做继承,那么它就会出错。知道我做错了什么。这才刚刚开始......

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

<!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>

1 个答案:

答案 0 :(得分:1)

尝试将 CodeBehind 更改为 CodeFile ,如下所示:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="WebForm11.aspx.cs" Inherits="WebApplication9.WebForm11" %>

也可能在另一种情况下,当您创建Web应用程序项目时,该指令应该是:

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

对于网站项目,第一个应该可以正常工作。