如何在asp.net中将文本动态加载到用户控件标签中?

我想加载 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);


潇湘沐
浏览 172回答 2
2回答

慕森卡

因为您进行了不正确的转换,您应该转换为您的用户控件类型:User1 _dummyUserControl = (User1)Page.LoadControl("~/UserControl/User1.ascx");&nbsp;_dummyUserControl.MyProperty = "SDfsdf"&nbsp; ; //here you can find all your custom propertiespanelMain.Controls.Add(_dummyUserControl);

HUWWW

你必须输入强制转换:User1&nbsp;_dummyUserControl&nbsp;=&nbsp;(User1)Page.LoadControl("~/UserControl/User1.ascx");
打开App,查看更多内容
随时随地看视频慕课网APP