我想加载 2 个用户控件(相同但具有不同的文本属性)。我的用户控件包含一个标签,其中包含为 ascx.cs 中的文本定义的函数
我正在使用面板在运行时加载控件..在这里我希望用户控件标签具有不同的文本。
我的 .ascx 文件
<asp:Label ID="uclbl" runat="server" />
我的 .ascx.cs 文件
public string textforlabel
{
get { return uclbl.Text; }
set { uclbl.Text = value; }
}
我的 .aspx 文件
<asp:Panel ID="panelMain" runat="server" >
</asp:Panel>
* 我已经注册了控件
我的 .aspx.cs 文件
Control _dummyUserControl = (Control)Page.LoadControl("~/UserControl/User1.ascx");
_dummyUserControl. ; //can not find the textforlabel here
panelMain.Controls.Add(_dummyUserControl);
慕森卡
HUWWW
相关分类