A Simple Calendar Display

This simple demo illustrates how to create a calendar control in an ASP.NET Web page. Note how simple it is - one line of code!


<May 2008>
SunMonTueWedThuFriSat
27282930123
45678910
11121314151617
18192021222324
25262728293031
1234567


Source Code

	<form runat="server">
		<asp:Calendar runat="server" />
	</form>


[Return to the article]