?? listmonitoringdocument.aspx
字號(hào):
?<%@ Page Language="C#" MasterPageFile="~/Default.Master" AutoEventWireup="true" CodeBehind="ListMonitoringDocument.aspx.cs"
Inherits="Agile.OA.Web.ListMonitoringDocument" %>
<asp:Content ID="Content" ContentPlaceHolderID="Content" runat="server">
<script type="text/javascript">
$(
function()
{
$("#Instances").agileTable(
{
target: "<%= this.Ids.ClientID %>"
});
$("#Instances").tableHover(
{
rowClass: "Hover"
});
});
</script>
<table class="Container">
<tr>
<td class="Top">
<asp:Button ID="Suspend" runat="server" Text="暫 停" OnClick="Suspend_Click" />
<asp:Button ID="Resume" runat="server" Text="恢 復(fù)" OnClick="Resume_Click" />
<asp:Button ID="Terminate" runat="server" Text="終 止" OnClick="Terminate_Click" />
</td>
</tr>
<tr>
<td>
<asp:ListView ID="Instances" runat="server" ItemPlaceholderID="ItemContainer">
<LayoutTemplate>
<table id="Instances" class="List">
<thead>
<tr>
<th class="Choose">
<input id="Header" type="checkbox" />
</th>
<th>
名 稱
</th>
<th>
描 述
</th>
<th>
模 板
</th>
<th>
開始時(shí)間
</th>
<th>
狀 態(tài)
</th>
</tr>
</thead>
<tbody id="ItemContainer" runat="server">
</tbody>
</table>
</LayoutTemplate>
<ItemTemplate>
<tr>
<td>
<input id="Item" type="checkbox" title="<%# Eval("Id") %>" />
</td>
<td>
<a href="MonitorDocument.aspx?InstanceId=<%# Eval("Id") %>" target="_blank">
<%# Eval("Name") %>
</a>
</td>
<td>
<%# Eval("Description") %>
</td>
<td>
<%# Eval("Template") %>
</td>
<td>
<%# Eval("StartTime", "{0:yyyy-MM-dd HH:mm:ss}") %>
</td>
<td>
<%# Eval("Status") %>
</td>
</tr>
</ItemTemplate>
<EmptyDataTemplate>
<table id="Instances" class="List">
<thead>
<tr>
<th class="Choose">
</th>
<th>
名 稱
</th>
<th>
描 述
</th>
<th>
模 板
</th>
<th>
開始時(shí)間
</th>
<th>
狀 態(tài)
</th>
</tr>
</thead>
</table>
</EmptyDataTemplate>
</asp:ListView>
<asp:HiddenField ID="Ids" runat="server" />
</td>
</tr>
</table>
</asp:Content>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -