Click here to Skip to main content
15,886,362 members
Articles / Web Development / ASP.NET

customize Calendar Control

Rate me:
Please Sign up or sign in to vote.
4.14/5 (3 votes)
24 Apr 2007 50.2K   936   22  
customize Calendar Control to add Day Information and day wise formating.
<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!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>Untitled Page</title>
</head>
<body style="font-size: 12pt">
    <form id="form1" runat="server">
        
    <div style="font-size: 10pt; font-family: Verdana" title="PBPWorld">
        <span style="text-decoration: underline"><strong>customized Calander Control<br />
        </strong></span>
        <br />
        <asp:Calendar ID="Calendar1" runat="server" BackColor="White" BorderColor="Black" Font-Names="Verdana" Font-Size="9pt" ForeColor="Black"
            Height="250px" NextPrevFormat="ShortMonth" Width="330px" BorderStyle="Solid" CellSpacing="1" OnDayRender="Calendar1_DayRender">
            <SelectedDayStyle BackColor="#333399" ForeColor="White" />
            <TodayDayStyle BackColor="#999999" ForeColor="White" />
            <DayStyle BackColor="#CCCCCC" />
            <OtherMonthDayStyle ForeColor="#999999" />
            <NextPrevStyle Font-Size="8pt" ForeColor="White" Font-Bold="True" />
            <DayHeaderStyle Font-Bold="True" Font-Size="8pt" ForeColor="#333333"
                Height="8pt" />
            <TitleStyle BackColor="#333399" Font-Bold="True" Font-Size="12pt" ForeColor="White"
                Height="12pt" BorderStyle="Solid" />
        </asp:Calendar>
    
    </div>
                
        <br />
		<br /><br />
		<br />
		<br />
		<br />
        <span style="font-size: 8pt; font-family: Verdana">contact : <a href="mailto:web.pbp@gmail.com">web.pbp@gmail.com</a></span>
        <br />
        <span style="font-size: 8pt; font-family: Verdana"><a href="http://www.pbpworld.co.nr">http://www.pbpworld.co.nr</a><br />
            <a href="http://www.ebooks.110mb.com">http://www.ebooks.110mb.com</a></span>
    </form>
</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions