extendercontrol

ASP.Net ScriptControl - Add the Javascript get_events method : Possible?

So I've run into a snag, apparently the get_events method is only "included" with the ExtenderControl class. What I need to do: Be able to call the get_events Javascript method using a ScriptControl since using an ExtenderControl isn't really possible at this point. I am hoping there is an easy way to have the scriptControl's javascri...

ASP.Net ScriptControl - Call one method from another

Say I have two script controls and one control has the other as a child control: ParentControl : ScriptControl { ChildControl childControl; } The script for the Child Control: ChildControl = function(element) { ChildControl.initializeBase(this, [element]); } ChildControl.prototype = { callMethod: function() { ret...