私の質問は簡単に思えますが、解決策が見つかりませんでした。
私は次のようにaspxを持っています:
namespace WebApplication3.asp_x
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
ascx は次のようになります。
namespace WebApplication3.asc_x
{
public partial class WebUserControl1 : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
public LinkButton lbTest
{
get {
return this.lbTest;
}
}
}
}
aspx ファイルから、パブリック プロパティ lbTest にアクセスしたいのですが、次のようにしますが、動作しません (コンパイルしません)。
namespace WebApplication3.asp_x
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
LinkButton lb = WebApplication3.asc_x.WebUserControl1.lbTest;
}
}
}
ここに何が欠けているのか誰か教えてもらえますか?