62,251
社区成员
发帖
与我相关
我的任务
分享
protected void Button1_Click(object sender, EventArgs e)
{
for (int i = 1; i < 6; i++)
{
Label lbl = (Label)this.panel1.FindControl("Lable" + i.ToString());
lbl.Text = "sss";
}
}
using System.Web.UI;
foreach(System.Web.UI.Control control in this.Controls)
{
if(control is Label)
{
Label lb = (Label)control;
lb.Text = "sss";
}
}
Label lbl = (Label)this.panel1.FindControl("Lable" + i.ToString());