我有50个文本框,从TextBox1开始直到TextBox50。我想从所有这50个文本框中检索值。我试过循环但它失败了。我想要一些代码,如TextBox(i).Text,其中i从1到50不等。 循环应该产生以下结果。 回复于(TextBox1.Text); 回复于(TextBox2.Text); 儿子直到 回复于(TextBox50.Text);
我怎样才能做到这一点?
答案 0 :(得分:3)
您可以使用FindControl
将字符串作为参数,将其传递给"TextBox" + i
,如:
TextBox tb = this.FindControl("TextBox" + i) as TextBox;
if (tb != null)
{
Response.Write(tb.Text);
}
答案 1 :(得分:0)
你可以简单地循环思考它们:
string value=""; // store each textbox value in this variable
foreach (Control x in this.Controls) // loop through the controls in the form
{
if (x is TextBox) // if the program found a textbox in the form
{
value = (x as TextBox).Text; // set the value of the textbox number x to the string value
listBox1.Items.Add(value); // here is a listbox to show the resule
}
}