コード例 #1
0
        /// <summary>
        /// Ensures a ScriptManager exists on the Page for this Control
        /// </summary>
        private void EnsureScriptManager()
        {
            ScriptControlHelper.EnsureScriptManager(ref this._scriptManager, this.Page);

            //if (_scriptManager == null)
            //{
            //    _scriptManager = ScriptManager.GetCurrent(Page);
            //    if (_scriptManager == null)
            //    {
            //        ExceptionHelper.TrueThrow(this.Page.Form.Controls.IsReadOnly, Resources.DeluxeWebResource.E_NoScriptManager);

            //        _scriptManager = new ScriptManager();
            //        _scriptManager.ScriptMode = ScriptMode.Release;
            //        _scriptManager.EnableScriptGlobalization = true;
            //        this.Page.Form.Controls.Add(_scriptManager);
            //        throw new HttpException(Resources.DeluxeWebResource.E_NoScriptManager);
            //    }
            //}
        }
コード例 #2
0
 /// <summary>
 /// Ensures a ScriptManager exists on the Page for this Control
 /// </summary>
 private void EnsureScriptManager()
 {
     ScriptControlHelper.EnsureScriptManager(ref this._scriptManager, this.Page);
 }