<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %> <% using (Html.BeginForm("SaveQuality", "Settings", FormMethod.Post, new { id = "form", name = "form" })) {%>
Indexers <%: Html.ValidationSummary(true, "Unable to save your settings. Please correct the errors and try again.") %>
<%= Html.LabelFor(m => m.DefaultProfileId) %>
<%: Html.DropDownListFor(m => m.DefaultProfileId, Model.SelectList)%> <%= Html.ValidationMessageFor(m => m.DefaultProfileId)%>

<%}%>