我试图在 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);
}

关于asp.net - SelectedDate 不适用于日历对象,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12507174/

10-10 11:56