Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/AlgorithmClass/Edit.aspx @ 5763

Last change on this file since 5763 was 5258, checked in by wtollsch, 13 years ago

#1198 finished okb admin stucture integration

File size: 778 bytes
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  Edit
5</asp:Content>
6
7<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
8
9    <h2>Edit</h2>
10
11    <% using (Html.BeginForm()) {%>
12        <%: Html.ValidationSummary(true) %>
13       
14        <fieldset>
15            <legend>Edit AlgorithmClass</legend>
16            <%: Html.EditorFor(model => ((HLWebOKBAdminPlugin.ViewModels.AlgorithmClassViewModel)ViewData["AlgorithmClass"]).AlgorithmClass)%>
17            <p>
18                <input type="submit" value="Save" />
19            </p>
20        </fieldset>
21
22    <% } %>
23
24</asp:Content>
25
Note: See TracBrowser for help on using the repository browser.