forked from huangxuelun/CateringManagementSystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCalendar.aspx
35 lines (30 loc) · 1.48 KB
/
Calendar.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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Calendar.aspx.cs" Inherits="Calendar" %>
<!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 runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<br /> <asp:Calendar ID="Calendar1" runat="server" BackColor="White"
BorderColor="Black" Font-Names="Times New Roman" Font-Size="10pt"
ForeColor="Black" Height="220px" Width="400px" DayNameFormat="Shortest"
NextPrevFormat="FullMonth" TitleFormat="Month">
<SelectedDayStyle BackColor="#CC3333" ForeColor="White" />
<SelectorStyle BackColor="#CCCCCC" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#333333" Width="1%" />
<TodayDayStyle BackColor="#999999" ForeColor="White" />
<OtherMonthDayStyle ForeColor="#999999" />
<DayStyle Width="14%" />
<NextPrevStyle Font-Size="8pt" ForeColor="White" />
<DayHeaderStyle Font-Bold="True" BackColor="#CCCCCC" Height="10pt"
Font-Size="7pt" ForeColor="#333333" />
<TitleStyle BackColor="Black"
Font-Bold="True" Font-Size="13pt" ForeColor="White" Height="14pt" />
</asp:Calendar>
</div>
</form>
</body>
</html>