帮助调试Ajax服务器控件客户端脚本

时间:2011-01-20 05:06:07

标签: asp.net ajax controls

我正在VS 2010中的ASP.NET C#4.0中编写Ajax服务器控件。

手工编写javascript原型类之后,我不知道编译和调试文件的方法。要了解为什么我的“onclick”事件不起作用。

我正在通过继承Control& amp;创建一个Ajax Server控件。 IScriptControl,并尝试让onclick事件处理程序工作。书面控制实际上是“DIV”。有人能告诉我它为什么不起作用吗?

由于

public class FrebbleSquare : Control, IScriptControl 
    {
.
.
.
IEnumerable<ScriptReference> IScriptControl.GetScriptReferences()
        {
            ScriptReference oRef1 = new ScriptReference("FrebbleAjaxControls.FrebbleSquare.js", this.GetType().Assembly.ToString());
            ScriptReference oRef2 = new ScriptReference("FrebbleAjaxControls.prototype.js", this.GetType().Assembly.ToString());
            ScriptReference oRef3 = new ScriptReference("FrebbleAjaxControls.scriptaculous.js", this.GetType().Assembly.ToString());
            ScriptReference oRef4 = new ScriptReference("FrebbleAjaxControls.effects.js", this.GetType().Assembly.ToString());

            return new ScriptReference[] { oRef1, oRef2, oRef3, oRef4 };
        }


        IEnumerable<ScriptDescriptor> IScriptControl.GetScriptDescriptors()
        {
            ScriptControlDescriptor descriptor = new ScriptControlDescriptor("FrebblesAjax.FrebbleSquare", this.ClientID);

            return new ScriptDescriptor[] { descriptor };
        }

}


JAVASCRIPT CLIENT FILE :


Type.registerNamespace('FrebblesAjax');

FrebblesAjax.FrebbleSquare = function (element) {

    FrebblesAjax.FrebbleSquare.initializeBase(this, [element]);


}


FrebblesAjax.FrebbleSquare.prototype =
{
    initialize: function () {

        FrebblesAjax.FrebbleSquare.callBaseMethod(this, 'initialize');

        this._onclickHandler = Function.createDelegate(this, this._onClick);

        $addHandlers(this.get_element(),
                     { 'click': this._onClick,
                     },
                     this);

    },

    dispose: function () {

        $clearHandlers(this.get_element());

        FrebblesAjax.FrebbleSquare.callBaseMethod(this, 'dispose');
    },

    _onClick: function (e) {

        alert('it worked!');

    }

}


FrebblesAjax.FrebbleSquare.registerClass('FrebblesAjax.FrebbleSquare', Sys.UI.Control);

if (typeof (Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();

1 个答案:

答案 0 :(得分:1)

如果您可以使用Firefox,请下载Firebug extension。页面加载时,右键单击您创建的元素,然后选择“检查元素”。通过这种方式,您可以查看当前存在的DOM的所有结构,属性和功能。当您使用JavaScript时,这通常比“查看源代码”更可取。您应该能够看到绑定了哪些事件处理程序,并在JavaScript调试器中设置断点。