我有一个字符串值,它是DateTime格式,我从另一个Calendar控件中捕获;如何在asp.net表单中的Calendar控件中显示该值?
string dateTo = dsDept.SelectedRow.Cells[3].Text;
string datefrom = dsDept.SelectedRow.Cells[2].Text;
从数据网格视图中选择两个字符串值。我需要在两个Calendar控件中显示这两个日期。
答案 0 :(得分:1)
您需要将其转换为DateTime
,然后分配给日历SelectedDate
属性,如
DateTime capturedDate;
if(DateTime.TryParse(dateTo, out capturedDate))
{
Calendar1.SelectedDate = capturedDate;
}