如何更改日历控件vs2010 vb.net的日期格式
我正在尝试从 Visual Studio 2010 中的 Calender 控件存储 DoteOfBirth。
Dim dob As Date = Calendar1.SelectedDate.Date.ToShortDateString()
我想像 dd/MM/yyyy 一样保存,没有任何其他内容,但是当我保存它时,它显示
2012-02-28T00:00:00+00:00
我不知道在哪里更改格式,我不知道如何删除附加到日期的东西。我正在 vb.net 中编写它并保存到 xml 文件。
非常感谢。
I am trying to store DoteOfBirth from a Calender control in visual studio 2010.
Dim dob As Date = Calendar1.SelectedDate.Date.ToShortDateString()
I wanna save like dd/MM/yyyy without anything else but when i save it it shows like
2012-02-28T00:00:00+00:00
I don't know where to change the format and I don't know how to remove the thing attached to the date. I am writing it in vb.net and saving to xml file.
Thanks so much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用
DateTimePicker
控件,则应使用Format
或CustomFormat
属性。如果您使用的是
MonthCalendar
控件...那么,您可以考虑使用DateTimePicker
来代替,根据 MSDN:If you're using a
DateTimePicker
control, you should use theFormat
orCustomFormat
properties.If you're using the
MonthCalendar
control ... well, you may consider using theDateTimePicker
instead, as per this excerpt from MSDN: