请问怎样能去掉自带日历中的下划线,但其他的各种功能不变?
我这样写:
private void CalendarLeft_DayRender(object sender, System.Web.UI.WebControls.DayRenderEventArgs e)
{
e.Cell.Text= e.Day.Date.Day.ToString();
}
这样下划线是去掉了,但 CalendarLeft_SelectionChanged事件就没法执行了,请问怎样做才能既能去掉下划线,又能正常使用CalendarLeft_SelectionChanged,因为我要用SelectionChanged事件来完成其他功能。
谢谢!