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で上記の文字列をキャストする方法?????