| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebForm.Platform.Log.Default" %>
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title></title>
- </head>
- <body>
- <form id="form1" runat="server">
- <div class="querybar">
- <table cellpadding="0" cellspacing="0" border="0" width="100%">
- <tr>
- <td>
- 标题:<input type="text" class="mytext" id="Title1" name="Title1" value="" runat="server" />
- 分类:<select class="myselect" id="Type" name="Type"><option value="">==全部==</option><asp:Literal ID="TypeOptions" runat="server"></asp:Literal></select>
- 人员:<input type="text" user="true" dept="false" value="" runat="server" station="false" unit="false" more="false" group="false" id="UserID" name="UserID" class="mymember" />
- 发生日期:<input type="text" class="mycalendar" name="Date1" style="width:90px;" value="" runat="server" /> 至 <input type="text" class="mycalendar" name="Date2" style="width:90px;" value="" runat="server" />
- <input type="submit" name="Search" value=" 查 询 " class="mybutton" />
- </td>
- </tr>
- </table>
- </div>
- <table class="listtable">
- <thead>
- <tr>
- <th width="45%">标题</th>
- <th width="10%">分类</th>
- <th width="15%">发生时间</th>
- <th width="10%">操作员</th>
- <th width="10%">发生IP</th>
- <th width="10%" sort="0">详细</th>
- </tr>
- </thead>
- <tbody>
- <%foreach(System.Data.DataRow dr in Dt.Rows){ %>
- <tr>
- <td><%=dr["title"] %></td>
- <td><%=dr["Type"] %></td>
- <td><%=dr["WriteTime"].ToString().ToDateTimeStringS() %></td>
- <td><%=dr["UserName"] %></td>
- <td><%=dr["IPAddress"] %></td>
- <td><a class="viewlink" href="javascript:void(0);" onclick="detail('<%=dr["ID"] %>');return false;">查看</a></td>
- </tr>
- <%} %>
- </tbody>
- </table>
- <div class="buttondiv"><asp:Literal ID="Pager" runat="server"></asp:Literal></div>
- </form>
- <script type="text/javascript">
- var appid = '<%=Request.QueryString["appid"]%>';
- var iframeid = '<%=Request.QueryString["tabid"]%>';
- var dialog = top.mainDialog;
- var query = '<%=Query%>';
- function detail(id)
- {
- dialog.open({ id: "window_" + appid.replaceAll('-', ''), title: "查看日志详细信息", width: 850, height: 450, url: top.rootdir + "/Platform/Log/Detail.aspx?id=" + id + '<%=Query%>', openerid: iframeid });
- }
- </script>
- </body>
- </html>
|