@model EnVisage.Models.ReportListModel @{ ViewBag.Title = "List"; Layout = "~/Views/Shared/_Layout.cshtml"; }

Report Catalog

@using (Html.BeginForm("", "", FormMethod.Post, new { id = "editForm" })) { Use the form below to manage reports in the catalog.
@Html.DropDownListFor(t=>t.SelectedReportId, new System.Web.Mvc.SelectList(Model.Reports, "Id", "Name"), new {@name="reportsList", @class="reports" }) }
@Html.Label("newReportName", "New Report Name") @Html.TextBox("newReportName") @section scripts { }