<% Html.Obout(new ListBox("ListBox1")
{
SelectedIndex = 2,
SelectionMode = ListBoxSelectionMode.Single
}); %>
<% Html.Obout(new ListBox("ListBox2")
{
SelectedValue = "ALFKI"
SelectionMode = ListBoxSelectionMode.Single
}); %>
<% Html.Obout(new ListBox("ListBox3")
{
SelectionMode = ListBoxSelectionMode.Single
}); %>