S
Stefan Kiryazov
How can i remove the underline of the days in an asp:Calendar? I tried
hard with no result. I tried all of the following, and more:
<asp:Calendar
CssClass="menudark"
<asp:Calendar
DayStyle-CssClass="menudark"
<asp:Calendar
<DayStyle
Font-Underline=False
<asp:Calendar
<DayStyle
CssClass="menudark"
private void calendar_DayRender(object sender, DayRenderEventArgs e)
{
e.Cell.CssClass = "menudark";
e.Cell.Attributes["Style"] = "text-decoration: none;";
Can anyone help me?
There must be a way to change this. I searched the html source of the
page and there was no "underline". What is causing this, a css maybe?
hard with no result. I tried all of the following, and more:
<asp:Calendar
CssClass="menudark"
<asp:Calendar
DayStyle-CssClass="menudark"
<asp:Calendar
<DayStyle
Font-Underline=False
<asp:Calendar
<DayStyle
CssClass="menudark"
private void calendar_DayRender(object sender, DayRenderEventArgs e)
{
e.Cell.CssClass = "menudark";
e.Cell.Attributes["Style"] = "text-decoration: none;";
Can anyone help me?
There must be a way to change this. I searched the html source of the
page and there was no "underline". What is causing this, a css maybe?