New_Customer.aspx.cs (Member フォルダーにある) で宣言された変数に、Senior.cs (App_code フォルダーにある) にアクセスできません。New_customer.aspx.cs の私のコードは次のとおりです。
public partial class Member_New_Customer : System.Web.UI.Page
{
public string[] aid = new string[5];
public string[] name= new string[5] ;
}
私のSenior.csのコードは次のとおりです
public class Senior
{
//here Member_New_Customer/New_Customer is not visible.
public Senior()
{
//
// TODO: Add constructor logic here
//
}
}