Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用带有剃刀引擎视图的 asp.net mvc 4。出现日期时间值的代码是:
服务器:obj.Inicio = DateTime.Now.Date 客户端:@Html.TextBoxFor(model => model.Inicio, "{0:hh:mm:ss}")
我想以 pt-BR 格式显示它,但它总是显示 12:00:00,正确的格式是 00:00:00。
有人帮我吗?
您应该在这里查看格式字符串
但要回答你的问题,hh 是 12 小时,HH 是 24 小时
{0:hh:mm:ss} ------> {0:HH:mm:ss}