.net – 如何注册启动脚本?

前端之家收集整理的这篇文章主要介绍了.net – 如何注册启动脚本?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我对.net的经验有限.我的应用程序抛出一个错误this.dateTimeFormat是未定义的,我追溯到一个已知的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文件底部

你会用 ClientScriptManager.RegisterStartupScript()
string str = @"Sys.CultureInfo.prototype._getAbbrMonthIndex = function(value) { 
    if (!this._upperAbbrMonths) { 
        this._upperAbbrMonths = this._toUpperArray(this.dateTimeFormat.AbbreviatedMonthNames);
    }
    return Array.indexOf(this._upperAbbrMonths,this._toUpper(value));
 };";

if(!ClientScriptManager.IsStartupScriptRegistered("MyScript"){
  ClientScriptManager.RegisterStartupScript(this.GetType(),"MyScript",str,true)
}
原文链接:https://www.f2er.com/ajax/159938.html

猜你在找的Ajax相关文章