我需要一个增加label name
。
我需要在10(示例)labels
中显示一些文本。
示例:
label1.Text = "1";
label2.Text = "2";
label3.Text = "3";
label4.Text = "4";
label5.Text = "5";
label6.Text = "6";
我需要增加label name (label1, label2, etc.)
中foreach
的数量,我会增加变量i
(i
将在这样的结构{{1}中使用}})。
我希望你能理解我想说的话。
我尝试这个但不起作用:
label.Name = "label" + i.ToString();
答案 0 :(得分:3)
int count = 10;
for (int i = 1; i <= count; i++)
{
// setup label and add them to the page hierarchy
Label lbl = new Label();
lbl.Name = "label" + i;
lbl.Text = i.ToString();
//assuming form1 is a form in your page with a runat="server" attribute.
this.Controls.Add(lbl);
}
答案 1 :(得分:0)
假设您有一系列Label控件label,您可以执行以下操作:
int i = 1;
for (int i = 1; i < label.Length; i++)
{
lbl.ID = String.Format("label{0}", i.ToString());
}