- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有这样的日历:
查看
<td>
<asp:Calendar ID="Calendar1" runat="server"
OnSelectionChanged="DateChange">
</asp:Calendar>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
</td>
.cs文件
protected void Page_Load(object sender, EventArgs e)
{
TextBox2.Text = DateTime.Today.ToShortDateString()+'.';
}
protected void DateChange(object sender, EventArgs e)
{
TextBox2.Text = Calendar1.SelectedDate.ToShortDateString() + '.';
}
它将日期显示为 "MM/dd/yyyy"
,但我想将其显示为 "dd/MM/yyyy"
,我尝试更改 >DateTime.Today.ToShortDateString()+'.';
到 DateTime.Today.ToShortDateString("dd/MM/yyyy");
但是我明白了
Error 3 No overload for method 'ToShortDateString' takes 1 arguments
我该怎么做才能解决这个问题?
最佳答案
ToShortDateString
没有有接受任何参数的重载。
如果您的ToShortDateString()
返回MM/dd/yyyy
格式,这意味着您的CurrentCulture
在它的 ShortDatePattern
中有这种格式属性(property)。
您可以随时使用 custom formatting对于像适当的这样的文化;
TextBox2.Text = DateTime.Today.ToString("dd/MM/yyyy", CultureInfo.InvariantCulture);
关于c# - 将 ToShortDateString 格式化为 dd/MM/yyyy,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46857346/
出于好奇,我尝试了一些原型(prototype)制作,但似乎只允许在第一个位置使用子例程的原型(prototype) &。 当我写作时 sub test (&$$) { do_somethin
我需要开发一个类似于 Android Play 商店应用程序或类似 this app 的应用程序.我阅读了很多教程,发现几乎每个教程都有与 this one 类似的例子。 . 我已经开始使用我的应用程
考虑一个表示“事件之间的时间”的列: (5, 40, 3, 6, 0, 9, 0, 4, 5, 18, 2, 4, 3, 2) 我想将这些分组到 30 个桶中,但桶会重置。期望的结果: (0, 1,
我是一名优秀的程序员,十分优秀!