0
rdoc.SetParameterValue("fromdate", Convert.ToDateTime(dtp_From.Text));
dtp_From.text = 12/16/2013年有效的日期時間。 的RDoc是的ReportDocument串未被識別爲在晶體報告參數
rdoc.SetParameterValue("fromdate", Convert.ToDateTime(dtp_From.Text));
dtp_From.text = 12/16/2013年有效的日期時間。 的RDoc是的ReportDocument串未被識別爲在晶體報告參數
你可以用確切的日期格式解析此日期:
var date = DateTime.ParseExact(dtp_From.Text, "MM/dd/yyyy", CultureInfo.InvariantCulture);
// care, there may be another date format: "M/d/yyyy"
rdoc.SetParameterValue("fromdate", date);
的可能的複製[無法從字符串解析日期時間(https://stackoverflow.com/questions/7854529 /無法對解析-日期時間從 - 一個字符串) – mjwills