当前位置 : 主页 > 网络编程 > ASP >

asp.net – SelectedDate不适用于Calendar对象

来源:互联网 收集:自由互联 发布时间:2021-06-24
我试图在ASP.NET上为Calendar对象设置一个新日期,但没有任何改变.这是我的代码: protected void Page_Load(object sender, EventArgs e){ if (Page.IsPostBack) { cld_birth.SelectedDate = new DateTime(2003, 1, 1); }} 尝试
我试图在ASP.NET上为Calendar对象设置一个新日期,但没有任何改变.这是我的代码:

protected void Page_Load(object sender, EventArgs e)
{

    if (Page.IsPostBack)
    {
        cld_birth.SelectedDate = new DateTime(2003, 1, 1);
    }
}
尝试设置VisibleDate:

if (Page.IsPostBack)
{
    cld_birth.SelectedDate = new DateTime(2003, 1, 1);
    cld_birth.VisibleDate = new DateTime(2003, 1, 1);
}
网友评论