Tagged Questions
The extendercontrol tag has no wiki summary.
0
votes
0answers
28 views
Change initialization order of IScriptControl and ExtenderControl
I have a user control which implements IScriptControl interface. One of its children is server control derived from ExtenderControl. The problem is that IScriptControl initializes before ...
0
votes
3answers
1k views
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 = ...
0
votes
1answer
944 views
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 ...