我想加载 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);
2 回答
慕森卡
TA贡献1806条经验 获得超8个赞
因为您进行了不正确的转换,您应该转换为您的用户控件类型:
User1 _dummyUserControl = (User1)Page.LoadControl("~/UserControl/User1.ascx");
_dummyUserControl.MyProperty = "SDfsdf" ; //here you can find all your custom properties
panelMain.Controls.Add(_dummyUserControl);
HUWWW
TA贡献1874条经验 获得超12个赞
你必须输入强制转换:
User1 _dummyUserControl = (User1)Page.LoadControl("~/UserControl/User1.ascx");
- 2 回答
- 0 关注
- 171 浏览
添加回答
举报
0/150
提交
取消