.net の経験は限られています。私のアプリはエラー this.dateTimeFormat is undefined をスローしますが、これは既知の ajax バグにまで突き止めました。投稿された回避策は次のように述べています。
「以下を起動スクリプトとして登録します。」
Sys.CultureInfo.prototype._getAbbrMonthIndex = function(value)
{
if (!this._upperAbbrMonths) {
this._upperAbbrMonths = this._toUpperArray(this.dateTimeFormat.AbbreviatedMonthNames);
}
return Array.indexOf(this._upperAbbrMonths, this._toUpper(value));
};
では、これを行うにはどうすればよいですか?aspx ファイルの末尾にスクリプトを追加する必要がありますか?