Hi,

How can I load Coolite Controls from AjaxEvent or AjaxMethod?

I mean:

[AjaxMethod]
public void Test()
{
    Window w = new Window();
    w.Width = 100;
    w.Height = 100;
    w.Title = "Test";
    w.Show();
    //And how can I do? Add to Controls or somewhere?
}
Thanks!