About

Ext.NET is a an open-source ASP.NET Component framework that integrates the Sencha Ext JS JavaScript framework. It allows the ExtJS user interface to be built declaratively using ASP.NET tag based markup, code-behind or inline fluent syntax, rather than programatically through JavaScript.

Rather than writing javascript similar to:

var win = new Ext.Window({
    id     : 'win-id',
    width  : 400,
    height : 300,
    title  : 'Window Title',
    autoLoad : { 
        url : 'http://www.google.co.uk/'
    }
});

Markup such as the following can be written:

<ext:Window 
    ID="win-id" 
    runat="server" 
    width="400" 
    height="300" 
    title="Window Title">
    <AutoLoad Url="http://www.google.co.uk/" />
</ext:Window>

Code-behind such as the following can be written:

var win = new Window {
    ID = "win-id",
    Width = 400,
    Height = 300,
    Title = "Window Title",
    AutoLoad = {
        Url = "http://www.google.co.uk/"
    }
};
history|show excerpt|excerpt history