Hi,

Im trying to inherit the coolite scriptmanager so I can make a custom server control.

Pretty simple to start with:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Coolite.Ext.Web;

namespace MyWebApp.Controls
{

    public class MyWebAppScriptManager : Coolite.Ext.Web.ScriptManager
    {

    }
}
Im getting a bug.

So, I build my new control and add the assembly to the visual studio toolbox in a website.

When I drag the custom control to the design view of the page the visual studio window freezes and the cursor goes "crazy".

Any help on this.

Ty