studycalendar.aspx

来自「该文件包括了WEB标单控件应用的所有实例代码」· ASPX 代码 · 共 26 行

ASPX
26
字号
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="studyCalendar.aspx.vb" Inherits="studyCalendar" %>

<!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>Using the Calendar control</title>
</head>
<body>
    <center >
        <form action ="studycalendar.aspx" method ="post" runat ="server" >
            <asp:Calendar ID ="Calendar1" runat ="server" OnSelectionChanged ="SelectChange"
                 CellPadding ="5" CellSpacing ="5" DayNameFormat ="Short" FirstDayOfWeek ="default" NextMonthText =">"
                 NextPrevFormat ="fullMonth" PrevMonthText ="<" SelectionMode ="DayWeekMonth" SelectMonthText =">>"
                 SelectWeekText =">" ShowDayHeader ="true" ShowGridLines ="true" ShowNextPrevMonth ="true" ShowTitle ="true" 
                 TitleFormat ="MonthYear" TodayDayStyle-Font-Bold ="true" DayHeaderStyle-Font-Bold ="true" OtherMonthDayStyle-ForeColor ="gray" 
                 TitleStyle-BackColor ="white" TitleStyle-ForeColor ="black" TitleStyle-Font-Bold ="true" SelectedDayStyle-BackColor ="black" 
                 SelectedDayStyle-Font-Bold ="true" >
            </asp:Calendar>
        </form>
        <br />
        <span id ="Message" runat ="server" ></span>
    </center>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?