我有一个复选框列表,例如:
<% foreach (var tobj in (ViewData["terr"] as List<Location>))
{ %>
<input type="checkbox" name="terr" id="<%: tobj.Location_Id %>" value="<%: tobj.Location_Id %>" disabled="disabled"/>
<span id="<%: tobj.Location_Name %>"> <%: tobj.Location_Name %> </span>
<br />
<% } %>
但我想在一行中显示 3 或 4 个复选框。为此,我需要将 foreach 转换为 for 循环。我无法做到这一点。希望任何人都可以在这方面帮助我。