本文介绍了我正在使用dd/MM/yyyy格式输入日期,我需要使用/分隔符来验证日期月份年,我想使用比较验证器来实现..plz帮助我的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

i''m使用dd/MM/yyyy格式输入日期,我需要使用/分隔符来验证日期月份年,我想使用比较验证器来做到这一点..plz帮助我

i''m using the dd/MM/yyyy format for the date entry and i need to Validate date month year with / separator i want to do that with compare validator..plz help me

推荐答案


Protected Page_Load(object sender, System.EventArgs e)
    {
        cmpStartDate.ValueToCompare =    System.DateTime.Now.ToShortDateString();
    }

Protected btnValidate_Click(object sender, System.EventArgs e)
    {
        if (!Page.IsValid)
            Response.Write("Valid dates entered");

    }


这篇关于我正在使用dd/MM/yyyy格式输入日期,我需要使用/分隔符来验证日期月份年,我想使用比较验证器来实现..plz帮助我的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 07:35