将文本框动态插入到用户控件中

本文关键字:用户 控件 插入 文本 动态 | 更新日期: 2023-09-27 18:13:19

我想知道是否可以从主。aspx页面插入一个文本框到用户控件中?如果有,该怎么做?我是asp.net的初学者,请帮助。

将文本框动态插入到用户控件中

   TextBox tb1=new TextBox();
    tb1.ID="TbA";
    Uc1.Controls.Add(tb1);//here Uc1 is the Id of the userControl.Which is registered in .aspx file