0

HTMLページでは、ID = "week1"のテーブルがあり、C#関数ではこれを次のように使用しています

week1.Rows.Add(TableCell);

テーブル ID に文字列をキャストしたい。文字列があるとします

for(int i=0; i<5; i++)
{
  String abc = "week" + i;
   /*
     How to do cast this string in table ID
     like above to add rows and cell in table but above is hardcoded and I want
     to make this dynamic.
   */
}

HTMLテーブルIDで上記の文字列をキャストする方法?????

4

3 に答える 3

2

テーブルがパネルにある場合は、次のように検索できます。ofc には runat=server が必要になることに注意してください。フォームで HtmlTable を使用していると仮定します ()

for (int i = 0; i < 5; i++)
        {
            var table = (HtmlTable)pnlTables.FindControl("week" + i);

            if (table != null)
            {
                //do stuff with your table
            }
        }
于 2013-04-17T08:36:48.807 に答える