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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WorkReminderView.aspx.cs" Inherits="CY.WebForm.Pages.personnel.WorkReminderView" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title>提醒详情</title>
    <uc:CMSHead ID="CMSHead1" runat="server" />
     <style type="text/css">
    .tableStyle1 td{word-break: normal; border-left: 1pt solid #CCCCCC; border-bottom: 1pt solid #CCCCCC;height: 24px; padding: 1px 2px 1px 4px;}
     </style>
</head>
<body>
    <form id="form1" class="form2" runat="server">
    <div>
  <table class="tableStyle1" style="  border-right: 1pt solid #CCCCCC; border-top: 1pt solid #CCCCCC; margin:10px auto;" cellpadding="0" cellspacing="0">
        <tr>
            <td class="ali03 w100px">
                部门:
            </td>
            <td class="w400px">
                <span id="spanDepartment" runat="server"></span>
             </td>
        </tr>
        <tr>
            <td class="ali03">
                提醒人:
            </td>
            <td class="w140px">
            <span id="spanStaff" runat="server"></span>
            </td>
        </tr>
        <tr>
            <td class="ali03">
                提醒事项:
            </td>
            <td class="w140px" style = "height:100px">
                <span id="spanContent" runat="server"></span>
            </td>
        </tr>
        <tr>
            <td class = "ali03">
                是否完成:
            </td>
            <td class="w140px">
                <span id="spanIsFinish" runat="server"></span>
             </td>
        </tr>
        <tr>
            <td class="ali03">
                反馈意见:
            </td>
            <td class="w140px" style = "height:100px">
                <span id="spanFeedBack" runat="server"></span>
            </td>
        </tr>
    </table>
    </div>
    </form>
</body>
</html>