You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
39 lines
1.2 KiB
4 years ago
|
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<QMAPP.Web.Models.Sys.UserOrgaizationModel>" %>
|
||
|
<table id="optionUserList" style="border:solid 1px #add9c0;" width="100%">
|
||
|
<tr>
|
||
|
<td colspan="3" bgcolor="#E5EEFF" >
|
||
|
<font size="3">�����ӵ��û�</font>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th bgcolor="#F5F5F5">
|
||
|
</th>
|
||
|
<th style="display:none">
|
||
|
��֯��������
|
||
|
</th>
|
||
|
<th bgcolor="#F5F5F5">
|
||
|
�û���
|
||
|
</th>
|
||
|
</tr>
|
||
|
<%
|
||
|
if (Model.resultList != null)
|
||
|
{
|
||
|
foreach (var item in Model.resultList)
|
||
|
{
|
||
|
|
||
|
%>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<input type="checkbox" name="_selectmenu" />
|
||
|
</td>
|
||
|
<td style="display:none">
|
||
|
<%=item.UserIDPK%>
|
||
|
</td>
|
||
|
<td style="border:solid 1px #add9c0;">
|
||
|
<%=item.UserName%>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<% }
|
||
|
} %>
|
||
|
</table>
|