Mega Code Archive

 
Categories / ASP.Net / Theme Style
 

Calendar Themes

File: Calendar.aspx <%@ Page Language="C#" Theme="FunkyTheme" %> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server">     <title>Untitled Page</title> </head> <body>     <form id="form1" runat="server">     <div>     <asp:Calendar ID="Calendar1" runat="server" />     </div>     </form> </body> </html> File: Calendar.skin <asp:Calendar runat="server"                BackColor="White"                BorderColor="Black"                BorderStyle="Solid"                CellSpacing="1"                Font-Names="Verdana"                Font-Size="9pt"                ForeColor="Black"                Height="250px"                Width="500px"                NextPrevFormat="ShortMonth"                SelectionMode="Day">    <SelectedDayStyle BackColor="DarkOrange"                       ForeColor="White" />    <DayStyle BackColor="Orange"               Font-Bold="True"               ForeColor="White" />    <NextPrevStyle Font-Bold="True"                    Font-Size="8pt"                    ForeColor="White" />    <DayHeaderStyle Font-Bold="True"                     Font-Size="8pt"                     ForeColor="#333333"                     Height="8pt" />    <TitleStyle BackColor="Firebrick"                 BorderStyle="None"                 Font-Bold="True"                 Font-Size="12pt"    ForeColor="White" Height="12pt" />    <OtherMonthDayStyle BackColor="NavajoWhite"                         Font-Bold="False"                         ForeColor="DarkGray" /> </asp:Calendar>                     ThemesCalendar.zip( 1 k)