Kube is a lightweight asp.net engine that provides support for a fast creation webservice-like server handlers, simplifing data-access and xslt-processing in declarative style.
Example:
This example gets list from database and render it as html radio list with given name.
Engine access
```
public class temp : IHttpHandler {
public void ProcessRequest (HttpContext context)
{
string rest = context.Request.Params[""];
if (rest != null)
{
string rawurl = context.Request.RawUrl.Split(new char[] { "=" })[1];
Engine.Handle(rawurl, context);
}
}
public bool IsReusable {
get {
return true;
}
}
}
```
Engine call on server side
<%Engine.Handle("output/general/get_time_types/report_period_ratings", Context);%>
Service d