我动态创建了文本框,但是当我点击按钮时,我在文本框中创建数据之前就丢失了。如何在动态文本框中维护数据。
答案 0 :(得分:0)
试试这个:
protected void Page_Load(object sender, EventArgs e)
{
TextBox text = new TextBox()
{
ID = "TextBox1"
};
Button button = new Button()
{
Text = "Submit"
};
button.Click += (s, a) =>
{
text.Text = Request["TextBox1"];
};
PlaceHolder1.Controls.Add(text);
PlaceHolder1.Controls.Add(button);
}