gpt4 book ai didi

c# - 自定义页面类

转载 作者:太空宇宙 更新时间:2023-11-03 20:40:07 25 4
gpt4 key购买 nike

我正在尝试为我的项目中的页面创建一个自定义类。

这里是default.aspx.cs

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

public partial class _Default : FrontPage
{
public String text;
protected void Page_Load(object sender, EventArgs e)
{
text = "";
}
}

这是 FrontPage 类:

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

/// <summary>
/// Summary description for FrontPage
/// </summary>
public class FrontPage
{
public DataContext db = new DataContext();
public String a;
//public void Page_Load(object sender, EventArgs e)
//{
//}
}

问题是我不断收到错误:

确保在此 kodefil 中定义的类对应于“inherits”属性,并且它扩展了正确的基类(例如 Page 或 UserControl)。

我做错了什么?

最佳答案

添加到您对 FrontPage 的定义:

public class FrontPage : System.Web.UI.Page

您的新类需要继承基本的“页面”类。

关于c# - 自定义页面类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3272927/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com