.NET Framework 3.5 を使用して ASP .NET プロジェクトに取り組んでいます。ユーザーコントロールを別のユーザーコントロール内にキャストしようとしているため、次のコードを使用しています。
test.ascx ファイルで:
<%@ Reference Control="test2.ascx" %>
および test.ascx.cs ファイルで:
private ASP.test2_ascx testing;
protected void Button1_Click(object sender, EventArgs e)
{
testing = (ASP.treestructure_ascx)LoadControl("test2.ascx");
testing.aload();
問題は、"ASP" という単語に下線が引かれ、"Error17 The type or namespace name 'ASP' could not be found (using ディレクティブまたはアセンブリ参照がありませんか?)" ということです。