<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage>" %> Add Existing Series <% if (Model.Count() == 0) Html.DisplayText("No Series to Add"); %> <%:Html.DropDownList("masterDropbox", (SelectList) ViewData["qualities"], new {style = "width: 100px;", id = "masterDropboxId"})%> <%: @Html.Telerik().DropDownList().Name("tester").BindTo((SelectList) ViewData["qualities"]).HtmlAttributes( new {style = "width: 100px", @class = "qualityDropbox"})%> <% foreach (var path in Model) { Html.RenderAction("RenderPartial", "AddSeries", new {path}); } %>