可以用compareto方法 date1.compareto(date2)
private void button1_Click(object sender, EventArgs e)
{
DateTime date1= Convert.ToDateTime(this.textBox1.Text);
DateTime date2= new DateTime(2012,2,21);//指定日期
if (date1.CompareTo( date2)>0)
{
this.label2.Text = "正确";
}
else
{
this.label2.Text = "错误";
}
}
DateTime dt = DateTime.Parse(this.TextBox1.Text);
DateTime nowDt = DateTime.Now;
int result = dt.CompareTo(nowDt);
Response.Write(result.ToString());
是 JS 判断 还是 后台判断
后台判断 直接转换成 int 类型 就行 最简单的
还有 日期判断函数
把textbox里的string转换成日期类型再去比较