为范围验证器设置日期格式 dd/mm/yy

发布于 2024-10-13 04:01:54 字数 163 浏览 4 评论 0原文

我有一个范围验证器来验证生日文本框。我必须确保学生必须年满 21 岁才能在我们这里注册。我设置“31/12/1993”格式(dd/mm/yy)。 但它无法运行该网站,因为我的数据库设置为这种(月/日/年)格式。我怎样才能在不改变数据库格式的情况下解决这个问题?以便它能够为每个人发挥作用。

谢谢。

I have a range validator to validate a textbox for birthday. i must ensure that a student must be above 21 to register with us. i set "31/12/1993" format (dd/mm/yy).
but it cannot run the website as in my database is set to this (mm/dd/yy) format. how can i solve this without changing my database format? so that it can function for everyone.

thx.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧街凉风 2024-10-20 04:01:54

在 C# 中使用 DateTime 并让 ADO 将其转换为数据库特定类型(您使用的是什么数据库?)并将其作为参数传递。不是作为字符串。

此外,为了防止错误,请使用日历进行用户输入。

替代方案:明确指出所需的格式。

您可以检索用户的浏览器语言:

string[] languages = Request.UserLanguages;

然后使用此字符串创建 CultureInfo (可能需要拆分):

CultureInfo ci = new CultureInfo(languages[0].Split(";")[0]);

并获取相应的日期格式:

string datePattern = ci.DateTimeFormat.ShortDatePattern

然后使用模式来解析用户输入。

DateTime.TryParseExact(userInput, datePattern, ...

Use a DateTime in C# and have ADO translate it to a Database specific type (what db are you using?) and pass it as a parameter. NOT as a string.

Also, to prevent errors, use a calender for user input.

Alternative: clearly indicate the required format.

You could retrieve the user's browser languages:

string[] languages = Request.UserLanguages;

Then create a CultureInfo with this string (the split might be needed):

CultureInfo ci = new CultureInfo(languages[0].Split(";")[0]);

and get the corresponding dateformat:

string datePattern = ci.DateTimeFormat.ShortDatePattern

Then use the pattern to parse the user input.

DateTime.TryParseExact(userInput, datePattern, ...
于我来说 2024-10-20 04:01:54

检查一下-->

string sBDate = "31/12/1993";
DateTime datBirthDay = ValidateDate(sBDate);

DateTime datToday = new DateTime();
datToday = DateTime.Today.Date;

if (datToday.Year - datBirthDay.Year < 21)
{ 
    //Error message:-You must be above 21.
}

public DateTime ValidateDate(string strInputDate)
{
    DateTime datReturnDate = new DateTime();
    DateTime datTempDate = new DateTime();

    datTempDate = DateTime.Parse("1/1/1900");
    string[] strArrDateFormat = {
    "dd.MM.yy",
    "dd.MM.yyyy",
    "dd-MM-yy",
    "dd-MM-yyyy",
    "dd/MM/yy",
    "dd/MM/yyyy",
    "dd MMM yy",
    "MMM yy",
    "MMM yyyy",
    "MMM-yy",
    "MMM-yyyy",
    "MMMM yyyy",
    "d MMMM yyyy",
    "dd MMMM yyyy",
    "MMMM yy",
    "d/M/yy"
};

    if (DateTime.TryParseExact(strInputDate, strArrDateFormat, null, DateTimeStyles.None, out datReturnDate))
    {
        //Format matched
    }
    else
    {
        datReturnDate = datTempDate;
    }

    return datReturnDate;
}

Check it out-->

string sBDate = "31/12/1993";
DateTime datBirthDay = ValidateDate(sBDate);

DateTime datToday = new DateTime();
datToday = DateTime.Today.Date;

if (datToday.Year - datBirthDay.Year < 21)
{ 
    //Error message:-You must be above 21.
}

public DateTime ValidateDate(string strInputDate)
{
    DateTime datReturnDate = new DateTime();
    DateTime datTempDate = new DateTime();

    datTempDate = DateTime.Parse("1/1/1900");
    string[] strArrDateFormat = {
    "dd.MM.yy",
    "dd.MM.yyyy",
    "dd-MM-yy",
    "dd-MM-yyyy",
    "dd/MM/yy",
    "dd/MM/yyyy",
    "dd MMM yy",
    "MMM yy",
    "MMM yyyy",
    "MMM-yy",
    "MMM-yyyy",
    "MMMM yyyy",
    "d MMMM yyyy",
    "dd MMMM yyyy",
    "MMMM yy",
    "d/M/yy"
};

    if (DateTime.TryParseExact(strInputDate, strArrDateFormat, null, DateTimeStyles.None, out datReturnDate))
    {
        //Format matched
    }
    else
    {
        datReturnDate = datTempDate;
    }

    return datReturnDate;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文