2011-03-10 09:49:59 +02:00
|
|
|
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>
|
2011-03-07 10:25:38 +02:00
|
|
|
|
|
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
|
|
|
Add Series
|
|
|
|
</asp:Content>
|
|
|
|
<asp:Content ID="Menu" ContentPlaceHolderID="ActionMenu" runat="server">
|
|
|
|
<%
|
|
|
|
Html.RenderPartial("SubMenu");
|
|
|
|
%>
|
|
|
|
</asp:Content>
|
|
|
|
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
|
|
|
|
2011-03-11 11:04:56 +02:00
|
|
|
<%: Html.ActionLink("Add New Series", "AddNew", "Series") %>
|
|
|
|
<br />
|
|
|
|
<%: Html.ActionLink("Add Existing Series", "AddExisting", "Series") %>
|
2011-03-09 09:40:48 +02:00
|
|
|
|
2011-03-07 10:25:38 +02:00
|
|
|
</asp:Content>
|