Web Application Markup Language

Please note that this project is in beta stage so some of definitions can be changed. Those changes would be anounced on this web site or blog at http://blog.skitsanos.com

WAML - Web Application Markup Language. WAML allows you to define your web application appearance and functionality by using simple XML like syntax mixed with HTML.

The idea behind WAML is to simplify application functionality definition and provide flexible access to UI objects, data and communication services.
WAML functionality build on top of existed AJAX frameworks available for public use.

WAML is the part of WDK.VFS now.

WAML is FREE.  (Download sample WAML site and WAML HttpHandler for ASP.NET)

Syntax sample

<wa:DialogWindow id="wndSample" title="Sample Window via WAML over YUI">
   <div>Sample Window</div>
   <hr />
   <wa:Button id="btnOk" title="Ok" />
 </wa:DialogWindow>

Configure your web.config to execute WAML

If you want to execute on your server *.waml files, you need to add new HttpHandler to your web config. You could do it this way:

<httpHandlers>
   <add verb="*" path="*.waml" type="WAML.WamlHandler,Waml" />
</httpHandlers>