Calendar control: (Rich Control) in asp.net
For Example: Write a program to demonstrate the use of calendar control
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Aryan Computers (Calendar control) </title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server" Font-Bold="True" Font-Size="Large"
Font-Strikeout="False" ForeColor="Maroon" Text="Calendar control"></asp:Label>
<br />
<br />
</div>
<asp:Calendar ID="Calendar1" runat="server"></asp:Calendar>
</form>
</body>
</html>
Output:

Comments
Post a Comment