gpt4 book ai didi

asp.net - 无法从代码隐藏调用 App_Code 类

转载 作者:行者123 更新时间:2023-12-02 06:38:46 24 4
gpt4 key购买 nike

我在“App_Code”文件夹中的文件中有一个类。我可以在“aspx”文件中使用它,但不能在代码隐藏文件中使用它。如何使其对隐藏代码可见?

注意:这是 Mono 上的 ASP.Net,我直接编写类,而不是使用 IDE 来编译它们

我的文件:

ASPX 文件(testappcode.aspx)

<%@ Page language="c#" src="TestAppCode.aspx.cs" Inherits="TestAppCode.TestAppCode" AutoEventWireup="true" %>
<html>
<head>
<title>Test App_Code Folder</title>
</head>
<body>
<form id="contactForm" runat="server">
<asp:TextBox id="Name" runat="server" ></asp:TextBox>
<asp:TextBox id="Age" runat="server" ></asp:TextBox>
<asp:Button ID="Submit" runat="server" Text="Submit" onclick="SubmitForm" />
</form>
</body>
<html>

背后代码 (TestAppCode.aspx.cs)

using System;
using System.Web.UI.WebControls;

namespace TestAppCode
{
public class TestAppCode : System.Web.UI.Page
{
protected void SubmitForm(object sender, EventArgs e)
{
//It fails here with the error: CS0246: The type or namespace name
//`MyAppCodeClass' could not be found. Are you missing a using
//directive or an assembly reference?
MyAppCodeClass m = new MyAppCodeClass();
}
}
}

APP_CODE 类(App_Code/MyAppCodeClass.cs)

public class MyAppCodeClass
{
public MyAppCodeClass() {}
}

我尝试给它一个命名空间,但这并不能解决问题。

最佳答案

将类的构建操作更改为编译。

enter image description here

关于asp.net - 无法从代码隐藏调用 App_Code 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14204990/

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