my problem is when i change the title fore-color in the design view i can see the changes when i run it i am not able to see the changes, all other changes to calendar except title are working good
my code is:
<asp:Calendar ID="Calendar2" runat="server"
onselectionchanged="Calendar2_SelectionChanged" Visible="False"
BackColor="White" BorderColor="Black" BorderStyle="Solid"
Font-Names="Verdana" Font-Size="9pt"
ForeColor="Black" Height="200px" Width="230px" CellSpacing="1"
NextPrevformat="ShortMonth" >
<SelectedDayStyle BackColor="#333399" ForeColor="White" />
<TodayDayStyle BackColor="#999999" ForeColor="White" />
<OtherMonthDayStyle ForeColor="#999999" />
<DayStyle BackColor="#CCCCCC" />
<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" Wrap="True" BorderStyle="Solid" Height="12pt"
/>
</asp:Calendar>
even though the forecolor is white(any other color) in titlestyle its siplaying black when i run it
can you please find a solution for me
Thanks