-
Notifications
You must be signed in to change notification settings - Fork 0
/
MsgAnnocement.aspx
executable file
·52 lines (50 loc) · 2.33 KB
/
MsgAnnocement.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
44
45
46
47
48
49
50
51
52
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="MsgAnnocement.aspx.cs" Inherits="MsgAnnocement" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<!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>
<script language="javascript" type="text/javascript">
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:ToolkitScriptManager runat="Server" EnableScriptGlobalization="true"
EnableScriptLocalization="true" ID="ToolkitScriptManager1" CombineScripts="false" />
<div>
<table style="width: 700px">
<tr>
<td>
<asp:Label ID="Label1" runat="server" Text="<%$ Resources:Resource, TipSubject %>" Font-Size="<%$ Resources:Resource, TextSizeTitle %>"></asp:Label>
</td>
<td>
<asp:TextBox ID="TbSubject" runat="server" Width="400px"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label2" runat="server" Text="<%$ Resources:Resource, TipExpirationDate %>" Font-Size="<%$ Resources:Resource, TextSizeTitle %>"></asp:Label>
</td>
<td>
<asp:TextBox ID="TbExpirationDate" runat="server" Width="400px"></asp:TextBox>
<asp:CalendarExtender ID="CalendarExtender1" runat="server" PopupButtonID="TbExpirationDate"
Enabled="True" TargetControlID="TbExpirationDate" Format="yyyy/MM/dd"></asp:CalendarExtender>
</td>
</tr>
<tr>
<td colspan="2">
<asp:TextBox ID="TbMsg" runat="server" Height="154px" Width="681px" TextMode="MultiLine" ></asp:TextBox>
</td>
</tr>
<tr>
<td colspan="2">
<asp:Button ID="BtnSend" runat="server" Text="<%$ Resources:Resource, BtnSend %>" OnClick="BtnSend_Click" />
<asp:Button ID="BtnCancel" Text="<%$ Resources:Resource, BtnCancel %>" runat="server" OnClick="BtnCancel_Click" />
</td>
</tr>
</table>
</div>
</form>
</body>
</html>