正确的日期格式日期验证


Label gdate=(Label)(GridView1.Rows[i].FindControl("Date"));

现在我想要的是确保日期(或值)在变量gdate是一个有效的日期(短日期如14-03-2014)没有时间(不像14-03-2014 00:00:00这是无效)

如果需要检查确切的格式,则使用DateTime TryParseEaxct:

DateTime dateValue
if (DateTime.TryParseExact(gdate.Text, "dd-MM-yyyy", null, 
                       DateTimeStyles.None, out dateValue))
{
    //Date in correct format
    //use dateValue
}
else
{
    //Date in incorrect format
}

Convert.ToDateTime将抛出一个异常,如果不能解析日期时间。

ParseExact也将抛出一个异常,如果日期字符串在您的Date控制是空的。

这里有一个CustomValidator:

<asp:CustomValidator runat="server"
    ID="valDateRange" 
    ControlToValidate="txtDatecompleted"
    onservervalidate="valDateRange_ServerValidate" 
    ErrorMessage="enter valid date" />
服务器端:

protected void valDateRange_ServerValidate(object source, ServerValidateEventArgs args)
{
    DateTime minDate = DateTime.Parse("1000/12/28");
    DateTime maxDate = DateTime.Parse("9999/12/28");
    DateTime dt;
    args.IsValid = (DateTime.TryParse(args.Value, out dt) 
                    && dt <= maxDate 
                    && dt >= minDate);
}

对于日期格式,可以使用短日期函数,如

 DateTime dt=new DateTime();
 dt = DateTime.Now;
 MessageBox.Show(dt.ToShortDateString());

试试这个

gdate.Text = DateTime.Now.Date.ToShortDateString();

试试这个来存储格式化的日期

string chkin = txtCheckIn.Text;
DateTime CheckIn = DateTime.ParseExact(chkin, "MM/dd/yyyy", System.Globalization.CultureInfo.InvariantCulture);

相关内容

  • 没有找到相关文章

最新更新