「App_Code」フォルダにあるファイルにクラスがあります。これを「aspx」ファイルで使用できますが、分離コードファイルからは使用できません。コードビハインドで表示するにはどうすればよいですか?
注:これはMono上のASP.Netであり、IDEそれらをコンパイルするために)を使用せずに直接クラスを作成しています
私のファイル:
<%@ 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>
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();
}
}
}
public class MyAppCodeClass
{
public MyAppCodeClass() {}
}
名前空間を指定してみましたが、問題は解決しません。
クラスを変更する 'Build Action
コンパイルします。