Thursday, April 27, 2017

Adding Calander in ASP.NET

<body>
    <form id="form1" runat="server">
    <div>
        <asp:Label ID="Label1" runat="server" Text="Date"></asp:Label><asp:TextBox ID="TextBox1"
            runat="server"></asp:TextBox><asp:ImageButton ID="ImageButton1"
            runat="server" onclick="ImageButton1_Click" />
    </div>
    <asp:Calendar ID="Calendar1" runat="server"
        onselectionchanged="Calendar1_SelectionChanged"
        onvisiblemonthchanged="Calendar1_VisibleMonthChanged"></asp:Calendar>
    </form>
</body>

No comments:

Post a Comment