TextBox t1 = new TextBox();
t1.Text="123";
qwe2.controls.AddControl(t1);
我将文本框动态添加到 qwe2 qwe2 只是一个面板
<asp:panel ID="qwe2" runat="server"></asp:panel>
然后在 button_submit 上有一个功能
public void button_click(object sender, EventArgs e)
{ var x = t1.Text; }
但是t1.text
是空的为什么会这样呢?以及如何获得价值;