Line | |
---|
1 | <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
|
---|
2 |
|
---|
3 | <asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
---|
4 | Create
|
---|
5 | </asp:Content>
|
---|
6 |
|
---|
7 | <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
---|
8 |
|
---|
9 | <h2>Create</h2>
|
---|
10 |
|
---|
11 | <% using (Html.BeginForm()) {%>
|
---|
12 | <%: Html.ValidationSummary(true) %>
|
---|
13 |
|
---|
14 | <fieldset>
|
---|
15 | <legend>Create Algorithm Class</legend>
|
---|
16 | <%: Html.EditorFor(model => ((HLWebOKBAdminPlugin.ViewModels.AlgorithmClassViewModel)ViewData["AlgorithmClass"]).AlgorithmClass)%>
|
---|
17 | <p>
|
---|
18 | <input type="submit" value="Createx" />
|
---|
19 | </p>
|
---|
20 | </fieldset>
|
---|
21 |
|
---|
22 | <% } %>
|
---|
23 |
|
---|
24 | <div>
|
---|
25 | <%: Html.ActionLink("Back to List", "Index") %>
|
---|
26 | </div>
|
---|
27 |
|
---|
28 | </asp:Content>
|
---|
29 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.