我写的一段关于检测时间合法性的程序

  /// 时间检查,判断输入时间的合法性
  ///
  ///
  ///
  ///
  ///
  private bool CheckDate(int Year,int Month,int Day)
  {
   if (Year.ToString() != "" && Month.ToString() != "" && Day.ToString() != "")
   {
    try
    { 
     if(Month>12 || Month<1)
     {
      this.PopupWin_Message.Visible = true;
      this.PopupWin_Message.Title   = "信息提示";    
      this.PopupWin_Message.Message = "您填入的时间有误,请重新填写!";
      this.PopupWin_Message.Text    = "您填入的时间有误,请重新填写!";

      return false;
     }
     if((Month==1||Month==3||Month==5||Month==7||Month==8||Month==10||Month==12)&&(Day>31||Day<1))
     {
      this.PopupWin_Message.Visible = true;
      this.PopupWin_Message.Title   = "信息提示";    
      this.PopupWin_Message.Message = "您填入的时间有误,请重新填写!";
      this.PopupWin_Message.Text    = "您填入的时间有误,请重新填写!";

      return false;
     }
     if((Month==4||Month==6||Month==9||Month==11)&&(Day>30||Day<1))
     {
      this.PopupWin_Message.Visible = true;
      this.PopupWin_Message.Title   = "信息提示";    
      this.PopupWin_Message.Message = "您填入的时间有误,请重新填写!";
      this.PopupWin_Message.Text    = "您填入的时间有误,请重新填写!";

      return false;
     }

     if(Month==2)
     {
      if(Day<1)
      {
       this.PopupWin_Message.Visible = true;
       this.PopupWin_Message.Title   = "信息提示";    
       this.PopupWin_Message.Message = "您填入的时间有误,请重新填写!";
       this.PopupWin_Message.Text    = "您填入的时间有误,请重新填写!";

       return false;
      }      

      if(DateTime.IsLeapYear(Year))
      {
       if(Day>29)
       {
        this.PopupWin_Message.Visible = true;
        this.PopupWin_Message.Title   = "信息提示";    
        this.PopupWin_Message.Message = "您填入的时间有误,请重新填写!";
        this.PopupWin_Message.Text    = "您填入的时间有误,请重新填写!";

        return false;
       }
      }
      else
      {
       if(Day>28)
       {
        this.PopupWin_Message.Visible = true;
        this.PopupWin_Message.Title   = "信息提示";    
        this.PopupWin_Message.Message = "您填入的时间有误,请重新填写!";
        this.PopupWin_Message.Text    = "您填入的时间有误,请重新填写!";

        return false;
       }
      }
     }
     
     return true;
     
    }
    catch(Exception e)
    {
     e.ToString(); 
     return false; 
    }    
   }
   else
   {
    return false;
   }
  }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值