- August 20, 2007
- 2,159
- 750
- Moderator
- #11
you have to call the base methods, e.g.
protected override void OnPageLoad()
{
(your code)
base.OnPageLoad();
}
To get proper animations you might also need to use a background thread - as otherwise your plugin is "blocking" the render thread and thus animations can't be rendered.
protected override void OnPageLoad()
{
(your code)
base.OnPageLoad();
}
To get proper animations you might also need to use a background thread - as otherwise your plugin is "blocking" the render thread and thus animations can't be rendered.
Last edited:
Netherlands