-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.aspx
executable file
·43 lines (36 loc) · 1.2 KB
/
Default.aspx
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
<%@ Page Language="C#" MasterPageFile="MasterPage.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="DashboardPage" %>
<%@ MasterType TypeName="MasterPage" %>
<asp:Content ContentPlaceHolderID="PageMenu" runat="server">
</asp:Content>
<asp:Content ContentPlaceHolderID="PageContent" runat="server">
<div class="panel panel-default">
<div class="panel-heading" id="grouphead">
</div>
<table class="table">
<thead>
<tr>
<th>今天开始</th>
<th>正在进行</th>
<th>今天结束</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<ol id="taskbegin"></ol>
</td>
<td>
<ol id="taskdoing"></ol>
</td>
<td>
<ol id="tasktodo"></ol>
</td>
</tr>
</tbody>
</table>
</div>
</asp:Content>
<asp:Content ContentPlaceHolderID="PageModal" runat="server">
</asp:Content>
<asp:Content ContentPlaceHolderID="PageScript" runat="server">
</asp:Content>