在MVC asp.net中验证出生日期

时间:2019-12-19 10:44:24

标签: c# asp.net-mvc

我很难确认出生日期。用户应从日历中选择一个日期。一旦用户单击验证。它应该能够确定它是大于18还是小于18。有什么帮助吗?我应该插入什么语句来验证Dob(18岁以下或18岁以上) 这是我尝试过的: 控制器:

public ActionResult Create(Information information, string buttonType)
    {
        if (buttonType=="Register")
        {
            var byteArray = Encoding.ASCII.GetBytes(information.Surname + Environment.NewLine + information.DOBP + Environment.NewLine + information.Email + Environment.NewLine + information.Gender + Environment.NewLine + information.Tel);
            var stream = new MemoryStream(byteArray);
            return File(stream, "text/plain", "Registration.txt");
        }
        if (buttonType=="Validate")
        {


        }
        return View(information);



    }

2 个答案:

答案 0 :(得分:0)

您可以使用Javascript执行相同的操作。检查链接Link进行javascript检查。检查该值后,您可以在浏览器本身中进行验证。为什么要在后面的代码中执行此类操作?是否需要进行此类活动在后面执行代码?

答案 1 :(得分:0)

行为

这是一个代码示例,我在m代码中的某些地方使用它。希望对您有帮助。

public bool IsValidDOB(DateTime date)
    {
        bool  objResult = null;
        try
        {
            if ( date < System.DateTime.Now )
            {
                DateTime now = DateTime.Today;
                int age = now.Year - date.Year;
                if (date > now.AddYears(-age)) age--;
                if (age>=18)
                objResult =  true;
                else
                    objResult =  false;
            }
            else
            {
                objResult =  false;
            }
        }
        catch (Exception ex)
        {
            objResult = new  false;
            Core.Logger.AdminTrace.Logger(Core.Logger.LogArea.BusinessTier, ex);
        }
        return objResult;
    }