我需要在Web表单应用程序中验证日期。为此,我使用CompareValidator和
Operator="DataTypeCheck" Type="Date"
问题是此Validator在2位数年份的Firefox上无法正常运行。 (javascript错误: m [2]未定义) 有一个4位数的年份,它正常工作。
有人知道一个很好的解决方法吗?
由于
答案 0 :(得分:2)
这是ASP.NET 3.5及更早版本中的客户端验证脚本中的错误。 (该脚本在旧版Internet Explorer中可正常运行,但在较新的符合标准的浏览器中无法正常运行。)
Microsoft修复了ASP.NET 4.0中的错误。
如果无法升级到ASP.NET 4.0,可以从.NET 4.0附带的System.Web.dll版本导出WebUIValidation.js资源,然后在页面PreRender
中注册脚本事件:
this.ClientScript.RegisterClientScriptInclude(
typeof(System.Web.UI.WebControls.BaseValidator), "WebUIValidation.js",
"url-to-the-4.0-WebUIValidation.js-script");
或者,您可以通过将以下内容添加到网页上的ValidatorConvert
块来覆盖错误的<script type="text/javascript">
功能:
function ValidatorConvert(op, dataType, val) {
function GetFullYear(year) {
var twoDigitCutoffYear = val.cutoffyear % 100;
var cutoffYearCentury = val.cutoffyear - twoDigitCutoffYear;
return ((year > twoDigitCutoffYear) ? (cutoffYearCentury - 100 + year) : (cutoffYearCentury + year));
}
var num, cleanInput, m, exp;
if (dataType == "Integer") {
exp = /^\s*[-\+]?\d+\s*$/;
if (op.match(exp) == null)
return null;
num = parseInt(op, 10);
return (isNaN(num) ? null : num);
}
else if(dataType == "Double") {
exp = new RegExp("^\\s*([-\\+])?(\\d*)\\" + val.decimalchar + "?(\\d*)\\s*$");
m = op.match(exp);
if (m == null)
return null;
if (m[2].length == 0 && m[3].length == 0)
return null;
cleanInput = (m[1] != null ? m[1] : "") + (m[2].length>0 ? m[2] : "0") + (m[3].length>0 ? "." + m[3] : "");
num = parseFloat(cleanInput);
return (isNaN(num) ? null : num);
}
else if (dataType == "Currency") {
var hasDigits = (val.digits > 0);
var beginGroupSize, subsequentGroupSize;
var groupSizeNum = parseInt(val.groupsize, 10);
if (!isNaN(groupSizeNum) && groupSizeNum > 0) {
beginGroupSize = "{1," + groupSizeNum + "}";
subsequentGroupSize = "{" + groupSizeNum + "}";
}
else {
beginGroupSize = subsequentGroupSize = "+";
}
exp = new RegExp("^\\s*([-\\+])?((\\d" + beginGroupSize + "(\\" + val.groupchar + "\\d" + subsequentGroupSize + ")+)|\\d*)"
+ (hasDigits ? "\\" + val.decimalchar + "?(\\d{0," + val.digits + "})" : "")
+ "\\s*$");
m = op.match(exp);
if (m == null)
return null;
if (m[2].length == 0 && hasDigits && m[5].length == 0)
return null;
cleanInput = (m[1] != null ? m[1] : "") + m[2].replace(new RegExp("(\\" + val.groupchar + ")", "g"), "") + ((hasDigits && m[5].length > 0) ? "." + m[5] : "");
num = parseFloat(cleanInput);
return (isNaN(num) ? null : num);
}
else if (dataType == "Date") {
var yearFirstExp = new RegExp("^\\s*((\\d{4})|(\\d{2}))([-/]|\\. ?)(\\d{1,2})\\4(\\d{1,2})\\.?\\s*$");
m = op.match(yearFirstExp);
var day, month, year;
if (m != null && (((typeof(m[2]) != "undefined") && (m[2].length == 4)) || val.dateorder == "ymd")) {
day = m[6];
month = m[5];
year = (m[2].length == 4) ? m[2] : GetFullYear(parseInt(m[3], 10));
}
else {
if (val.dateorder == "ymd"){
return null;
}
var yearLastExp = new RegExp("^\\s*(\\d{1,2})([-/]|\\. ?)(\\d{1,2})(?:\\s|\\2)((\\d{4})|(\\d{2}))(?:\\s\u0433\\.|\\.)?\\s*$");
m = op.match(yearLastExp);
if (m == null) {
return null;
}
if (val.dateorder == "mdy") {
day = m[3];
month = m[1];
}
else {
day = m[1];
month = m[3];
}
year = ((typeof(m[5]) != "undefined") && (m[5].length == 4)) ? m[5] : GetFullYear(parseInt(m[6], 10));
}
month -= 1;
var date = new Date(year, month, day);
if (year < 100) {
date.setFullYear(year);
}
return (typeof(date) == "object" && year == date.getFullYear() && month == date.getMonth() && day == date.getDate()) ? date.valueOf() : null;
}
else {
return op.toString();
}
}
答案 1 :(得分:1)
也许这可以帮到你(上一篇文章,只需要dataType ==“Date”),但我还没有测试过它: http://forums.asp.net/t/1358621.aspx
答案 2 :(得分:0)
我的解决方案是创建一个日期验证器,它继承自BaseValidator
并覆盖ControlPropertiesValid(), EvaluateIsValid() and OnPreRender(EventArgs e)
。
如果您有其他想法,请拍摄。
答案 3 :(得分:0)
使用自定义验证器
Imports System.Globalization
Private Sub CustomValidator1_ServerValidate(source As Object, args As System.Web.UI.WebControls.ServerValidateEventArgs) Handles CustomValidator1.ServerValidate
Dim dateResult As Date
If Date.TryParse(TextBox1.Text, CultureInfo.CreateSpecificCulture("zh-CN"), DateTimeStyles.None, dateResult) Then
args.IsValid = True
Else
args.IsValid = False
End If
End Sub
如果愿意,可以在JS的客户端执行等效操作。