我的网页上有 42 个文字及其 ID,例如 ltr1、ltr2、...、ltr41、ltr42。我想在 for 循环中更改它们的文本属性。
这是html代码:
<table class="calendar">
<tr>
<td>
<div class="day">
<asp:Literal ID="day1" runat="server">
</asp:Literal></div>
</td>
</tr>
</table>
C#
for(int i=1;i<43;i++)
{
("ltr"+i).Text="something"; //I don't know which method I must use, so wrote like this
}
我怎样才能做到这一点?