<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %> Edit

Edit

<% using (Html.BeginForm()) {%> <%: Html.ValidationSummary(true) %>
Fields
<%: Html.LabelFor(model => model.SeriesId) %>
<%: Html.TextBoxFor(model => model.SeriesId) %> <%: Html.ValidationMessageFor(model => model.SeriesId) %>
<%: Html.LabelFor(model => model.Title) %>
<%: Html.TextBoxFor(model => model.Title) %> <%: Html.ValidationMessageFor(model => model.Title) %>
<%: Html.LabelFor(model => model.CleanTitle) %>
<%: Html.TextBoxFor(model => model.CleanTitle) %> <%: Html.ValidationMessageFor(model => model.CleanTitle) %>
<%: Html.LabelFor(model => model.Status) %>
<%: Html.TextBoxFor(model => model.Status) %> <%: Html.ValidationMessageFor(model => model.Status) %>
<%: Html.LabelFor(model => model.Overview) %>
<%: Html.TextBoxFor(model => model.Overview) %> <%: Html.ValidationMessageFor(model => model.Overview) %>
<%: Html.LabelFor(model => model.AirTimes) %>
<%: Html.TextBoxFor(model => model.AirTimes) %> <%: Html.ValidationMessageFor(model => model.AirTimes) %>
<%: Html.LabelFor(model => model.Language) %>
<%: Html.TextBoxFor(model => model.Language) %> <%: Html.ValidationMessageFor(model => model.Language) %>
<%: Html.LabelFor(model => model.Path) %>
<%: Html.TextBoxFor(model => model.Path) %> <%: Html.ValidationMessageFor(model => model.Path) %>
<%: Html.LabelFor(model => model.Monitored) %>
<%: Html.TextBoxFor(model => model.Monitored) %> <%: Html.ValidationMessageFor(model => model.Monitored) %>
<%--
<%: Html.LabelFor(model => model.ProfileId) %>
<%: Html.TextBoxFor(model => model.ProfileId) %> <%: Html.ValidationMessageFor(model => model.ProfileId) %>
--%>

<% } %>
<%: Html.ActionLink("Back to List", "Index") %>