<% Html.Obout(new ListBox("ListBox1")
{
HeaderTemplate = new OboutMvcTemplate<ListBoxHeaderTemplateContainerInfo>((info) =>
{%>
CONTINENTS
<%}),
Detail = new ListBox("ListBox2") {
EnableLoadOnDemand = true,
OnLoadingItems = "ListBox/LoadCountries",
HeaderTemplate = new OboutMvcTemplate<ListBoxHeaderTemplateContainerInfo>((info) =>
{%>
COUNTRIES
<%})
}
}); %>