⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 calendar.aspx

📁 Microsoft?ASP.NET Programming with Microsoft Visual C#?.NET Version 2003 Step By Step
💻 ASPX
字号:
<%@ Page language="c#" Codebehind="Calendar.aspx.cs" AutoEventWireup="false" Inherits="Chapter_08.Calendar" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
    <HEAD>
        <title>Calendar</title>
        <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
        <meta name="CODE_LANGUAGE" Content="C#">
        <meta name="vs_defaultClientScript" content="JavaScript">
        <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
    </HEAD>
    <body>
        <form id="Form1" method="post" runat="server">
            <asp:label id="title" runat="server" font-size="18" font-name="Verdana" text="Calendar Example"></asp:label>
            <BR>
            <asp:calendar id="Calendar1" backcolor="lightgray" borderstyle="groove" borderwidth="5" bordercolor="blue"
                runat="server">
                <titlestyle backcolor="blue" forecolor="silver" font-bold="true" />
            </asp:calendar>
            <P>
                <asp:radiobutton id="StartRadio" runat="server" text="Start Date" groupname="Chooser"></asp:radiobutton>
                <asp:radiobutton id="EndRadio" runat="server" text="End Date" groupname="Chooser"></asp:radiobutton><BR>
                <asp:label id="StartDateLabel" runat="server" text="Start Date"></asp:label>
                <asp:textbox id="StartDate" runat="server"></asp:textbox><BR>
                <asp:label id="EndDateLabel" runat="server" text="End Date"></asp:label>
                <asp:textbox id="EndDate" runat="server"></asp:textbox></P>
            <P>
                <asp:CompareValidator id="CompareValidator1" runat="server" ErrorMessage="Start Date must be before End Date!"
                    ControlToValidate="StartDate" ControlToCompare="EndDate" Operator="LessThan" Type="Date" Display="Dynamic"></asp:CompareValidator></P>
        </form>
    </body>
</HTML>

⌨️ 快捷键说明

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