我有3个文本框字段。代表日期
例如 DD MM YYYY
如何验证每个文本框中只输入正确的数据。 它是一个正则表达吗?
我需要在ascx / aspx文件中执行此操作,而不是.cs代码隐藏
感谢
答案 0 :(得分:5)
您可以使用正则表达式验证每个字段,但不会考虑具有不同天数的不同月份:您可以输入无效日期。
在服务器端,可以使用以下内容进行验证:
DateTime D;
string CombinedDate=String.Format("{0}-{1}-{2}", YearField.Text, MonthField.Text, DayField.Text);
if(DateTime.TryParseExact(CombinedDate, "yyyy-M-d", DateTimeFormatInfo.InvariantInfo, DateTimeStyles.None, out D)) {
// valid
} else {
// not valid
}
答案 1 :(得分:0)
您应该使用CustomValidator来验证所有3个控件的结果输入。也许在自定义验证脚本中,您可以使用正则表达式来验证数据。
答案 2 :(得分:0)
尝试将它们放入DateTime对象。
int day, month, year;
if (Int32.TryParse(dayInput.Value, out day)) {
if (Int32.TryParse(monthInput.Value, out month)) {
if (Int32.TryParse(yearInput.Value, out year)) {
DateTime birthDate = new DateTime(year, month, day);
if ([birthDate is in valid range])
// it passes
}
}
}
我知道这不是很优雅,但您也可以使用以下RegEx
以相同的方式测试它[0-9]+
但是我喜欢我的方式,因为我可以将其输入到DateTime字段,然后测试范围以确保它不超过当前日期并且不低于当前日期之前的100年。
答案 3 :(得分:0)
aspx文件中的验证不会在表示层中引入逻辑代码吗?
我建议使用AJAX控件(有一个AJAX MaskEdit框 - 相似)。如果您正在部署的服务器可以支持这些,那么他们通常可以使用这些东西,查看AJAX工具包。
答案 4 :(得分:0)
完整示例:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="Web_Layer.WebForm2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<script runat="server">
protected void ValidateDate(object sender, EventArgs e)
{
int day=0;
int month=0;
int year=0;
if (!int.TryParse(txtDD.Text, out day))
day = 0;
if (!int.TryParse(txtMM.Text, out month))
month = 0;
if (!int.TryParse(txtYY.Text, out year))
year = 0;
if (((year > 0)) && ((month > 0) && (month < 13)) && ((day > 0) && (day <= DateTime.DaysInMonth(year, month))))
{
lblValid.Text = "Valid!";
}
else
{
lblValid.Text = "NOT Valid!";
}
}
</script>
<asp:TextBox ID="txtDD" runat="server"></asp:TextBox>
<asp:TextBox ID="txtMM" runat="server"></asp:TextBox>
<asp:TextBox ID="txtYY" runat="server"></asp:TextBox>
<asp:Button ID="btn" runat="server" OnClick="ValidateDate"/>
<asp:Label ID="lblValid" runat="server"></asp:Label>
</div>
</form>
</body>
</html>
答案 5 :(得分:0)
使用下拉菜单怎么样?
答案 6 :(得分:0)
public bool isValidDate(string datePart, string monthPart, string yearPart)
{
DateTime date;
string strDate = string.Format("{0}-{1}-{2}", datePart, monthPart, yearPart);
if (DateTime.TryParseExact(strDate, "dd-MM-yyyy", System.Globalization.DateTimeFormatInfo.InvariantInfo , System.Globalization.DateTimeStyles.None, out date ))
{
return true;
}
else
{
return false ;
}
}