Equivalent to refer to control by variable name?

前端 未结 4 996
北荒
北荒 2021-01-22 16:44

In VB I can loop through controls, or refer to a control by concatenating a variable to a string. Something like:

Dim I as integer
I = 1
Me[\"Textbox\" & I]         


        
4条回答
  •  醉梦人生
    2021-01-22 17:17

     int I = 1;
     this["Textbox" + I].Text = "some text";
    

    OR

     int I = 1;
     this.Page["Textbox" + I].Text = "some text";
    

    OR

     int I = 1;
     this.Controls["Textbox" + I].Text = "some text";
    

提交回复
热议问题