forked from siteserver/cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpageUser.aspx
More file actions
196 lines (176 loc) · 8.83 KB
/
pageUser.aspx
File metadata and controls
196 lines (176 loc) · 8.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<%@ Page Language="C#" Inherits="SiteServer.BackgroundPages.Settings.PageUser" %>
<%@ Register TagPrefix="ctrl" Namespace="SiteServer.BackgroundPages.Controls" Assembly="SiteServer.BackgroundPages" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!--#include file="../inc/head.html"-->
</head>
<body>
<form class="m-l-15 m-r-15" runat="server">
<div class="card-box" style="padding: 10px; margin-bottom: 10px;">
<ul class="nav nav-pills nav-justified">
<li class="nav-item active">
<a class="nav-link" href="pageUser.aspx">用户管理</a>
</li>
<li class="nav-item">
<a class="nav-link" href="userGroup.cshtml">用户组管理</a>
</li>
<li class="nav-item">
<a class="nav-link" href="userStyle.cshtml">用户字段</a>
</li>
<li class="nav-item">
<a class="nav-link" href="userConfig.cshtml">用户设置</a>
</li>
<li class="nav-item">
<a class="nav-link" href="userHome.cshtml">用户中心设置</a>
</li>
<li class="nav-item">
<a class="nav-link" href="userMenu.cshtml">用户中心菜单</a>
</li>
</ul>
</div>
<ctrl:alerts runat="server" />
<div class="card-box">
<div class="m-t-10">
<div class="form-inline">
<div class="form-group">
<label class="col-form-label m-r-10">用户组</label>
<asp:DropDownList ID="DdlGroupId" class="form-control" AutoPostBack="true" OnSelectedIndexChanged="Search_OnClick"
runat="server"></asp:DropDownList>
</div>
<div class="form-group m-l-10">
<label class="col-form-label m-r-10">登录次数</label>
<asp:DropDownList ID="DdlLoginCount" class="form-control" AutoPostBack="true" OnSelectedIndexChanged="Search_OnClick"
runat="server">
<asp:ListItem Text="<全部>" Value="0" Selected="true"></asp:ListItem>
<asp:ListItem Text=">30" Value="30"></asp:ListItem>
<asp:ListItem Text=">50" Value="50"></asp:ListItem>
<asp:ListItem Text=">100" Value="100"></asp:ListItem>
<asp:ListItem Text=">200" Value="200"></asp:ListItem>
<asp:ListItem Text=">300" Value="300"></asp:ListItem>
</asp:DropDownList>
</div>
<div class="form-group m-l-10">
<label class="col-form-label m-r-10">注册时间</label>
<asp:DropDownList ID="DdlCreationDate" class="form-control" AutoPostBack="true" OnSelectedIndexChanged="Search_OnClick"
runat="server">
<asp:ListItem Text="<全部时间>" Value="0" Selected="true"></asp:ListItem>
<asp:ListItem Text="1天内" Value="1"></asp:ListItem>
<asp:ListItem Text="2天内" Value="2"></asp:ListItem>
<asp:ListItem Text="3天内" Value="3"></asp:ListItem>
<asp:ListItem Text="1周内" Value="7"></asp:ListItem>
<asp:ListItem Text="1个月内" Value="30"></asp:ListItem>
<asp:ListItem Text="3个月内" Value="90"></asp:ListItem>
<asp:ListItem Text="半年内" Value="180"></asp:ListItem>
<asp:ListItem Text="1年内" Value="365"></asp:ListItem>
</asp:DropDownList>
</div>
<div class="form-group m-l-10">
<label class="col-form-label m-r-10">最后活动时间</label>
<asp:DropDownList ID="DdlLastActivityDate" class="form-control" AutoPostBack="true" OnSelectedIndexChanged="Search_OnClick"
runat="server">
<asp:ListItem Text="<全部时间>" Value="0" Selected="true"></asp:ListItem>
<asp:ListItem Text="1天内" Value="1"></asp:ListItem>
<asp:ListItem Text="2天内" Value="2"></asp:ListItem>
<asp:ListItem Text="3天内" Value="3"></asp:ListItem>
<asp:ListItem Text="1周内" Value="7"></asp:ListItem>
<asp:ListItem Text="1个月内" Value="30"></asp:ListItem>
<asp:ListItem Text="3个月内" Value="90"></asp:ListItem>
<asp:ListItem Text="半年内" Value="180"></asp:ListItem>
<asp:ListItem Text="1年内" Value="365"></asp:ListItem>
</asp:DropDownList>
</div>
<div class="form-group m-l-10">
<label class="col-form-label m-r-10">每页显示条数</label>
<asp:DropDownList ID="DdlPageNum" class="form-control" AutoPostBack="true" OnSelectedIndexChanged="Search_OnClick"
runat="server">
<asp:ListItem Text="<默认>" Value="0" Selected="true"></asp:ListItem>
<asp:ListItem Text="30" Value="30"></asp:ListItem>
<asp:ListItem Text="50" Value="50"></asp:ListItem>
<asp:ListItem Text="100" Value="100"></asp:ListItem>
<asp:ListItem Text="200" Value="200"></asp:ListItem>
<asp:ListItem Text="300" Value="300"></asp:ListItem>
</asp:DropDownList>
</div>
</div>
<div class="form-inline m-t-10">
<div class="form-group">
<label class="col-form-label m-r-10">目标</label>
<asp:DropDownList ID="DdlSearchType" class="form-control" runat="server"></asp:DropDownList>
</div>
<div class="form-group m-l-10">
<label class="col-form-label m-r-10">关键字</label>
<asp:TextBox id="TbKeyword" class="form-control" runat="server" />
</div>
<asp:Button class="btn btn-success m-l-10 btn-md" OnClick="Search_OnClick" ID="Search" Text="搜 索" runat="server" />
</div>
</div>
<div class="panel panel-default m-t-20">
<div class="panel-body p-0">
<div class="table-responsive">
<table id="contents" class="table tablesaw table-hover m-0">
<thead>
<tr class="thead">
<th>账号</th>
<th>邮箱</th>
<th>手机</th>
<th class="text-nowrap text-center">注册时间</th>
<th class="text-nowrap text-center">用户组</th>
<th class="text-nowrap text-center">登录次数</th>
<th class="text-nowrap text-center" width="120"> </th>
<th width="20">
<input onclick="_checkFormAll(this.checked)" type="checkbox" />
</th>
</tr>
</thead>
<tbody>
<asp:Repeater ID="RptContents" runat="server">
<ItemTemplate>
<tr>
<td>
<asp:Literal ID="ltlUserName" runat="server"></asp:Literal>
</td>
<td>
<asp:Literal ID="ltlEmail" runat="server"></asp:Literal>
</td>
<td>
<asp:Literal ID="ltlMobile" runat="server"></asp:Literal>
</td>
<td class="text-nowrap text-center">
<asp:Literal ID="ltlCreationDate" runat="server"></asp:Literal>
</td>
<td class="text-nowrap text-center">
<asp:Literal ID="ltlGroupName" runat="server"></asp:Literal>
</td>
<td class="text-nowrap text-center">
<asp:Literal ID="ltlLoginCount" runat="server"></asp:Literal>
</td>
<td class="text-nowrap text-center">
<asp:HyperLink NavigateUrl="javascript:;" ID="hlChangePassword" Text="重设密码" runat="server"></asp:HyperLink>
<asp:HyperLink ID="hlEditLink" class="ml-2" Text="编辑" runat="server"></asp:HyperLink>
</td>
<td class="text-center">
<asp:Literal ID="ltlSelect" runat="server"></asp:Literal>
</td>
</tr>
</ItemTemplate>
</asp:Repeater>
</tbody>
</table>
</div>
</div>
</div>
<ctrl:sqlPager id="SpContents" runat="server" class="table table-pager" />
<hr />
<asp:Button class="btn btn-primary m-r-5" id="BtnCheck" Text="审核通过" runat="server" />
<asp:Button class="btn m-r-5" ID="BtnAdd" Text="添加用户" runat="server" />
<asp:Button class="btn m-r-5" ID="BtnLock" Text="锁定用户" runat="server" />
<asp:Button class="btn m-r-5" ID="BtnUnLock" Text="解除锁定" runat="server" />
<asp:Button class="btn m-r-5" ID="BtnDelete" Text="删 除" runat="server" />
<asp:Button class="btn m-r-5" ID="BtnExport" Text="导出Excel" runat="server" />
</div>
</form>
</body>
</html>
<!--#include file="../inc/foot.html"-->