Introduction to coolite Toolkit
1. coolite toolkit is a web control that supports ASP. NET Ajax.
2. coolite toolkit is developed based on the cross-browser extjs library and simplifies the development steps, including rich Ajax applications.
3. Both coolite toolkit and extjs are open-source.
4. You may obtainCode
Simply put, it is to encapsulate ext into Asp.net controls by using Asp.net custom control technology in the Open Source Ajax library of pure JS, which simplifies development and improves. netProgramDeveloper Web development speed.
Use Cases of coolite Toolkit:
Coolite toolkit is very suitable for Web application development. It provides many professional Asp.net input/verification/display controls, as well as a page layout framework, and fully supports Ajax, because it is encapsulated by all components on extjs, developers can configure attributes in the visual designer.
Coolite toolkit system requirements:
Test on your computer: vs2008 +. Net frameword3.5 + Windows XP
I don't know if it can be done.
Official download of coolite Toolkit:
Official homepage: http://coolite.com
: Http://coolite.com/download
Samples: http://examples.coolite.com
Coolite toolkit installation method:
Decompress the zip package and find coolite. Ext. Web. dll in coolite toolkit professional v0.8.2.
First add coolite. Ext. Web. dll coolite. Utilities. dll newtonsoft. JSON. dll reference
Open vs2008, create a web site project, add the tab coolite toolkit in the Toolkit, select an item, and import coolite. Ext. Web. dll
Start to use it. Directly Drag Control
Project configuration and usage:
<Configsections>
<Section name = "coolite" type = "coolite. Web. UI. globalconfig" requirepermission = "false"/>
</Configsections>
<System. Web>
<Httphandlers>
<Add Path = "*/coolite. axd" verb = "*" type = "coolite. Ext. Web. ResourceManager" Validate = "false"/>
</Httphandlers>
<Httpmodules>
<Add name = "ajaxrequestmodule" type = "coolite. Ext. Web. ajaxrequestmodule, coolite. Ext. Web"/>
</Httpmodules>
</System. Web>
<! --
The system. webserver Section is required for running ASP. NET Ajax under Internet Information Services 7.0.
It is not necessary for previous version of IIS.
-->
<System. webserver>
<Validation validateintegratedmodeconfiguration = "false"/>
<Modules>
<Add name = "ajaxrequestmodule" precondition = "managedhandler" type = "coolite. Ext. Web. ajaxrequestmodule, coolite. Ext. Web"/>
</Modules>
<Handlers>
<Add name = "ajaxrequesthandler" verb = "*" Path = "*/coolite. axd" precondition = "integratedmode" type = "coolite. Ext. Web. ResourceManager"/>
</Handlers>
</System. webserver>