12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CustomerCacheList.aspx.cs" Inherits="LYFZ.WeixinServers.WeiXinAPP.CustomerCacheList" %>
- <!--#include file="html/head.html" -->
- <!--#include file="html/leftMenu.html" -->
- <link rel="stylesheet" href="/WeiXinAPP/lib/font-awesome/css/font-awesome.css">
- <div class="content">
-
-
- <ul class="breadcrumb">
- <!--#include file="html/indexBread.html" -->
- <li class="active">客户端连列表</li>
- </ul>
- <div class="container-fluid">
- <div class="row-fluid">
- <div style="width:100%; min-height:700px;">
-
- <div class="btn-toolbar">
- <!-- <button class="btn btn-primary"><i class="icon-plus"></i> New User</button>-->
- <div style="width:100%;height:24px;">
- <form id="tab2" style="width:320px;height:100%; float:left;">
- <label style="width:50px;height:100%; padding-top:5px; float:left;">关键字</label>
- <div style="width:200px;height:100%; float:left; margin-right:5px;">
- <input id="Keyword" name="Keyword" type="text" class="span12" />
- </div>
-
- <button class="btn">查询</button>
- </form>
- <button class="btn" onclick="RefreshLoad()" >刷新缓存</button>
- </div>
-
- <div class="btn-group">
- </div>
- </div>
- <div class="well">
- <table class="table">
- <thead>
- <tr>
- <th>#</th>
- <th style="width:160px;">客户名称</th>
- <th>标识</th>
- <th>APP接口URL</th>
- <th>微信号</th>
-
- <th>调用频率</th>
- <th>刷新时间</th>
- <th>创建时间</th>
- <th>状态</th>
- <th style="width:62px;"></th>
- </tr>
- </thead>
- <tbody>
- <%=this.CustomerListHtmlTb.ToString() %>
- </tbody>
- </table>
- </div>
- <%=this.PagingInfoHtml%>
- </div>
- <!--#include file="html/DeleteDialog.html" -->
- <!--#include file="html/footer.html" -->
-
- </div>
- </div>
- </div>
- <script type="text/javascript">
- $(document).ready(function () {
- var Keyword = GetQueryString("Keyword");
- if (Keyword)
- {
- $("#Keyword").val(Keyword);
- }
- });
- function RefreshLoad() {
- document.location = "CustomerCacheList.aspx?type=refresh";
- }
- </script>
- <!--#include file="html/bottom.html" -->
|