Created
September 4, 2017 07:03
-
-
Save wuzhenda/3e196a7c890d94f9f08337def1ecd3f5 to your computer and use it in GitHub Desktop.
web page body
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
<form id="form1" runat="server"> | |
<div id="headerPanel" class="headerPanel"> | |
<div class="tools_bar">控件 | |
<!-- button 控件 菜单编号为12 --> | |
<uc:PermitButton runat="server" ID="btn_PermitBtns" PermissionID="12" /> | |
</div> | |
<div class="btnbarcontetn" style="margin-top: 1px; background: #fff"> | |
<table border="0" class="frm-find" style="width:99%;max-width:1300px;"> | |
<tr> | |
<th>DTU编号:</th> | |
<td> | |
<input type="text" id="Text2" class="txt" style="width:100%" data-format="(bianhao like '%{0}%')" /> | |
</td> | |
<th>电梯编号:</th> | |
<td> | |
<input type="text" id="Text1" class="txt" style="width:100%" data-format="(etor_bianhao like '%{0}%')" /> | |
</td> | |
<th>版本号:</th> | |
<td> | |
<input type="text" id="txt_organize" class="txt" style="width:100%" data-format="(version='{0}')" /> | |
</td> | |
<th>连接状态:</th> | |
<td> | |
<asp:DropDownList runat="server" ID="ddl_status" CssClass="select" style="width:180px" data-format="(status='{0}')"></asp:DropDownList> | |
</td> | |
</tr> | |
<tr> | |
<th>sim卡号:</th> | |
<td> | |
<input type="text" id="txt_project" class="txt" style="width:100%" data-format="(sim_id='{0}')" /> | |
</td> | |
<th>imsi号:</th> | |
<td colspan="3"> | |
<input type="text" id="Text5" class="txt" style="width:100%" data-format="(imsi like '%{0}%')" /> | |
</td> | |
<th>绑定电梯:</th> | |
<td> | |
<asp:DropDownList runat="server" ID="ddl_bind" CssClass="select" style="width:180px" data-format="(etor_bianhao is {0})"> | |
<asp:ListItem Value="-1" Text="--请选择是否绑定--"></asp:ListItem> | |
<asp:ListItem Value="null" Text="未绑定电梯"></asp:ListItem> | |
<asp:ListItem Value="not null" Text="已绑定电梯"></asp:ListItem> | |
</asp:DropDownList> | |
</td> | |
<td> | |
<input id="btnquery" type="button" class="btnSearch" value="搜 索" onclick="BindGridView()" /> | |
<input id="btnreset" type="button" class="btnSearch m-l" value="重 置" onclick="searchreset()" /> | |
</td> | |
</tr> | |
</table> | |
</div> | |
</div> | |
<%--表格容器--%> | |
<div id="gridview" style="margin:0 1px 0 1px;"></div> | |
</form> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment