您好,以下我改成Web版,您参考参考!
protected void Button1_Click(object sender, EventArgs e)
{
string[] array2 = new string[] { "A", "B", "C", "D", "E" };
//^^ 这个矩阵是未知的,我先假设有ABCDE
for (int i = 0; i < array2.Length; i++)
{
Label myLabel = this.FindControl(string.Format("label{0}", (i+1).ToString())) as Label;
if (myLabel == null) continue;
myLabel.Text = array2[i];
}
}
※ 引述《sqrt1089 (李崩子)》之铭言:
: 您好,方向是这边没错!先谢谢你~
: 但是我的for 是元素 (这边是未知)
: 以下是用你的code改过
: private void button1_Click(object sender, EventArgs e)
: {
: string[] array2 = new string[] { "A", "B", "C", "D", "E" };
: //^^ 这个矩阵是未知的,我先假设有ABCDE
: int j = 1;
: foreach (string str in array2)//
: {
: foreach (Control childc in this.Controls)
: {
: if (childc is Label)
: {
: if (childc.Name.ToString() !=
: string.Format("label{0}",Convert.ToString(j).Trim())) continue;
: childc.Text = str;
: }
: }
: j++;
: }
: }
: 执行前后变成:http://ppt.cc/rLdA
: 所以假设array2有N个元素(小于12),相对应的label 也会被取代^^
: ※ 引述《aacced (aacced)》之铭言:
: : 不知道是不是你要的
: : private void button1_Click(object sender, EventArgs e)
: : {
: : foreach (Control childc in this.Controls)
: : {
: : if (childc is Label)
: : {
: : if (childc.Name.ToString() != string.Format("label{0}", textBox1.Text.Trim())) continue;
: : childc.Text = textBox2.Text;
: : }
: : }
: : }
: : 附上程式码:http://cht.tw/h/dvn3l