<% Html.Obout(new ComboBox("ComboBox1")
{
ItemTemplate = new OboutMvcTemplate<ComboBoxItem>((item) =>
{%>
<span class="template-name"><%= ((oboutSuite.Customer)item.DataItem).CompanyName %></span>
/
<span class="template-country">
<%= ((oboutSuite.Customer)item.DataItem).Country %>
<img src="/Content/img/flag_<%= ((oboutSuite.Customer)item.DataItem).Country %>.png" alt="" />
</span>
<%})
}); %>