问题描述
我有一个文本框,我必须输入日期掩码说dd-mon-yyyy,它将存储在sql server中并用于显示输入掩码格式的日期,如10-jul-2014所以如何我验证输入的掩码dd-mon-yyyy是在sql日期掩码标准
我附加了一个链接 []这些掩码可以在文本框中输入,因此显示标签应该将日期转换为输入的掩码格式(例如dd-mon) -yyyy)作为2014年10月10日。
编码是在C#中完成的,所以我认为验证可能是基于C#正则表达式或者是验证sql date standared mask格式
注意:dd-mon-yyyy不可能在C#win表单日期掩码标准中我需要验证所有可能的sql server date此链接中的掩码: []
i have a text box where i have to enter a date mask say "dd-mon-yyyy" which will be stored in sql server and used to display a date in entered mask format, like 10-jul-2014 so how do i validate the entered mask "dd-mon-yyyy" is in sql date mask standard
I have attached a link sql date mask standard[^] these mask can be entered in the text box so the display label should convert the date to the entered mask format (say "dd-mon-yyyy") as 10-jul-2014.
The coding is done in C# so I think validation is likly to be a C# regex based or something to validate the sql date standared mask format
Note : "dd-mon-yyyy" is not possible in C# win forms date mask standard i need to validate all the possible sql server date masks in this link : sql date mask standard[^]
推荐答案
这篇关于我有一个文本框,我必须输入日期面具说“Dd-Mon-Yyyy”哪些将存储在Sql Server中并用于以输入的掩码格式显示日期,那么如何验证输入的掩码...的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!