asp.net mvc 菜单管理中 checkbox 选中问题
前台
<table class="tablelist" border="1" cellpadding="0" bordercolor="#cccccc" cellspacing="0" style="background-color:#FCFCFC; margin: 0 auto; border-collapse:collapse; border-spacing:0">
<%foreach (var item in Model){if (item.MenuType == 1){ %>
<tr class="listtitle">
<th align="left" style=" padding-left:20px;"><input type="checkbox" value="<%:item.Id %>" /><%:item.Name %></th>
</tr>
<tr>
<td align="left" style=" height:20px;">
<%foreach (var items in Model){if (item.Id == items.TopId) { %>
<div align="center" style=" float:left; width:100px; line-height:20px;"><input type="checkbox" value="<%:items.Id %>" /><%:items.Name%></div>
<%}}%>
</td>
</tr>
<%}} %>
</table>
后台action是返回一个 List<Menus>
现在问题是当一个角色他拥有某个菜单权限的时候某个checkbox就是选中...怎么实现的?
------解决方案--------------------------------------------------------
request["name"]