Telerik报道。 VS.如何在文本框中将DateTime参数转换为ShutDateString?

时间:2014-06-12 07:17:12

标签: c# parameters telerik-reporting

我在文本框中有代码:

{Parameters.dtFrom} - {Parameters.dtTo}

但它显示不是我需要的:

01.01.2014 00:00:00 - 12.12.2014 00:00:00

如何将DateTime值转换为ShortDateString(01.01.2014 - 12.12.2014)

感谢您的帮助。

P.S。抱歉我的英文不好

2 个答案:

答案 0 :(得分:1)

我认为您可以使用格式文本功能执行此操作,请参阅here

然后你可以做类似下面的事情

var textBox = new TextBox();
textBox.Value = "=Format('{0:dd.mm.yyyy}', Parameters.dtFrom) - Format('{0:dd.mm.yyyy}', Parameters.dtTo)";

答案 1 :(得分:0)

要将DateTime值转换为ShortDateStringConvert.ToDateTime(datepickerId.SelectedDate).ToShortDateString();