username@email.com
2025-05-12 ae6e40362a745caef9ead36f81f38313fb8c2c66
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WorkReminderEdit.aspx.cs" Inherits="CY.WebForm.Pages.personnel.WorkReminderEdit" %>
 
<!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" />
</head>
<body>
    <form id="form1" class="form2" runat="server">
    <div>
  <table class="tableStyle" style=" margin:10px auto;" cellpadding="0" cellspacing="0">
        <tr>
            <td class="ali03 w100px">部门:</td>
            <td>
             <asp:DropDownList runat="server" ID="selDepartmentId" AutoPostBack="true" keepDefaultStyle="true" onselectedindexchanged="selDepartmentId_SelectedIndexChanged">
                </asp:DropDownList></td>
        </tr>
        <tr>
            <td class="ali03">提醒人:</td>
            <td><select id="selStaff" runat="server" keepDefaultStyle="true"></select></td>
        </tr>
        <tr>
            <td class="ali03">提醒事项:</td>
            <td><textarea id="txtContent" runat="server" style=" width:400px; height:50px;" class="Sreq" msg="请输入提醒事项"></textarea></td>
        </tr>
        <tr id = "trIsFinish" runat="Server">
            <td class = "ali03">
                是否完成
            </td>
            <td>
             <select keepDefaultStyle="true"  name="selIsFinish"  runat="server" id="selIsFinish">
                        <option value="0">未完成</option>
                        <option value="1" selected="selected">已完成</option>
             </select>
             </td>
        </tr>
        <tr id = "trFeedBack" runat="Server">
            <td class="ali03">反馈意见:</td>
            <td><textarea id="txtFeedBackContent" runat="server" style=" width:400px; height:50px;"></textarea></td>
        </tr>
        <tr>
            <td colspan="2" style=" text-align:center;"><asp:Button ID="btn_submit" runat="server" OnClick="btn_submit_form"  Text="提交" /></td>
        </tr>
    </table>
    </div>
    </form>
</body>
</html>