如何在Calendar控件中显示字符串值?

时间:2016-08-04 19:56:27

标签: c# asp.net calendar

我有一个字符串值,它是DateTime格式,我从另一个Calendar控件中捕获;如何在asp.net表单中的Calendar控件中显示该值?

string dateTo = dsDept.SelectedRow.Cells[3].Text;
string datefrom = dsDept.SelectedRow.Cells[2].Text;

从数据网格视图中选择两个字符串值。我需要在两个Calendar控件中显示这两个日期。

1 个答案:

答案 0 :(得分:1)

您需要将其转换为DateTime,然后分配给日历SelectedDate属性,如

  DateTime capturedDate;
  if(DateTime.TryParse(dateTo, out capturedDate))
    {
       Calendar1.SelectedDate = capturedDate;
    }