Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Views/AlgorithmClass/Details.aspx @ 5186

Last change on this file since 5186 was 5186, checked in by wtollsch, 14 years ago

#1198 MVC2 plugin template added for HL OKBWebClient

File size: 713 bytes
Line 
1<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<HLWebOKBAdminPlugin.ViewModels.AlgorithmClassViewModel>" %>
2
3<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
4  Details
5</asp:Content>
6
7<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
8
9    <h2>Details</h2>
10
11    <fieldset>
12        <legend>Detail AlgorithmClass</legend>
13        <%: Html.EditorFor(model => model.AlgorithmClass) %>
14    </fieldset>
15    <p>
16        <%: Html.ActionLink("Edit", "Edit", new { id=Model.AlgorithmClass.Id}) %> |
17        <%: Html.ActionLink("Back to List", "Index") %>
18    </p>
19
20</asp:Content>
21
Note: See TracBrowser for help on using the repository browser.