14

.NET Framework 2.0我们有一个运行Ajax version 10618.

但事实上,这是 dll 的旧版本,因此我们计划将其切换到 .dll 的“最新”.NET Framework 2.0版本AjaxControlToolkit version 20229

在我们的测试中,我们检测到 ASP 控件存在问题,该控件RegularExpressionValidator过去在旧版本中运行良好。

每当目标控件的输入与验证不匹配时,控件就会显示我的文本,在这种情况下,它是一个红色星号,位于下一行中,并在控件中显示以下内容:"-1.7976931348623157e+308"

表达式没有任何问题,因为正如我所说,它适用于旧版本的Ajax,并且我找不到与RegularExpressionValidatorsAjax版本相关的任何内容。

PS:验证器和控件都在 UpdatePanel 中。

PS 2:对于旧版本,它会在控件中放置一个 0,然后在表达式不匹配时显示它旁边的红色星号。

编辑:

这是控件,完全复制:

<asp:RegularExpressionValidator ID="ValidateFooOrder" 
runat="server" ControlToValidate="txtFooNum"                                                    
Text="*" ErrorMessage="Invalid Foo number" 
ValidationExpression="^\d{0,4}$" ValidationGroup="GenerateFooFile" />

它还NumericUpAndDownExtender附有:

<ajaxToolkit:NumericUpDownExtender ID="NumericExtenderFooNum" 
runat="server" TargetControlID="txtFooNum"                                                    
TargetButtonDownID="FooBack" TargetButtonUpID="FooForward" />
4

2 回答 2

2

好的,我遇到了同样的问题,这是我的发现:

首先是来源-1.7976931348623157E+308。它等于在Sys.Application.init 事件处理程序之一中调用的Minimum属性:AjaxControlToolkit.NumericUpDownBehavior

Sys.Application.add_init(function() {
    $create(AjaxControlToolkit.NumericUpDownBehavior, {"Maximum":1.7976931348623157E+308,"Minimum":-1.7976931348623157E+308, /* other non relevant stuff */);
});

所以,这里没有魔法,只是一个最小值DoubleMinimum是与版本 10618 相比的新属性。

其次,为什么页面一显示就显示呢?发生这种情况是因为在值(等于参数 from )readValue中定义的内部函数如果为空则分配给输入。来源:AjaxControlToolkit.NumericUpDownBehavior.prototypethis._minMinimum$createreadValue

readValue : function() {
        /// <summary>
        /// Parse value of textbox and this._currentValue to be that value.
        /// this._currentValue = this._min if some there is an exception
        /// when attempting to parse.
        /// Parse int or string element of RefValues
        /// </summary>

        if (this._elementTextBox) {
            var v = this._elementTextBox.value;
// The _currentValue of NumericUpDown is calculated here 
            // if textbox empty this._currentValue = this._min
            if(!this._refValuesValue) {
                if(!v) {
                    this._currentValue = this._min;
                } else {
                    try {
                        this._currentValue = parseFloat(v);
                    } catch(ex) {
                        this._currentValue = this._min;
                    }
                }
                if(isNaN(this._currentValue)) {
                    this._currentValue = this._min;
                }
// And assigned here. In case of empty input we will get -1.7976931348623157E+308 if Minimum was not changed
                this.setCurrentToTextBox(this._currentValue);
                this._valuePrecision = this._computePrecision(this._currentValue);
            } else {
                if(!v) {
                    this._currentValue = 0;
                } else {
                    var find = 0;
                    for (var i = 0; i < this._refValuesValue.length; i++) {
                        if (v.toLowerCase() == this._refValuesValue[i].toLowerCase()) {
                            find = i;
                        }
                    }
                    this._currentValue = find;
                }
                this.setCurrentToTextBox(this._refValuesValue[this._currentValue]);
            }
        }
    }

之前Minimum,在版本 10618 中,默认值为0. Minimum所以我认为可以通过在扩展器声明中明确指定值来解决所描述的问题:

<ajaxToolkit:NumericUpDownExtender ID="NumericExtenderFooNum" runat="server" 
     Minimum="0"
     TargetControlID="txtFooNum"
     TargetButtonDownID="FooBack" TargetButtonUpID

我发现的另一件事是change事件调度在新版本的 IE 中工作错误(为了使其工作,应该启用兼容性视图,但我认为这不是公共网站的选项)。

问题在于setCurrentToTextBox功能。如果使用document.createEventevent创建对象,则始终在处理程序(例如验证处理程序)中。要解决此问题,应交换条件,因此 IE 中的所有事件都将使用createEventObject创建。null

// Current implementation of version 20229
setCurrentToTextBox : function(value) {
            // full sources are not shown, only if matters here

            if (document.createEvent) {
                // event is created using createEvent
            } else if( document.createEventObject ) {
                // event is created using createEventObject 
            }
        }
    }

// Updated implementation
setCurrentToTextBox : function(value) {
            // full sources are not shown, only if matters here

            if (document.createEventObject) {
                // event is created using createEventObject 
            } else if(document.createEvent) {
                // event is created using createEvent
            }
        }
    }
于 2013-05-04T15:30:45.530 回答
-1

查看错误消息,意味着正在测试的数字超出了表达式的边界。唯一允许的数字介于 0 和 9999 之间。不允许使用字母、标点符号或其他字符。表达式的另一部分在数字周围断言锚点,作为行或单词的开头和结尾。唯一允许的其他值是 NULL,这可能是更新更严格并给出错误的地方。例如,如何验证不存在的数字或数字“\d”(零字符)?

于 2013-04-08T23:51:40.467 回答