当我尝试运行asp.net C#Web表单时,我得到:
无法加载指向.aspx文件第1行的类型“ SlipUpdate”。
.aspx文件的第一行是:
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" Codebehind="SlipUpdate.aspx.cs" Inherits="SlipUpdate" %>
为什么asp.net在文件中包含
Inherits="SlipUpdate"
子句,为什么会出现此错误?提前致谢.....
最佳答案
您需要在SlipUpdate的前面添加名称空间。
因此,如果您在此页面后面的代码中是:
namespace MyProject
{
}
继承将是:
Inherits="MyProject.SlipUpdate"