<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %> <%@ Import Namespace="HLWebOKBAdminPlugin.Models" %> <%@ Import Namespace="HLWebOKBAdminPlugin.OKBAdministrationService" %> Detail <% using (Html.BeginForm("SaveChanges", "AlgorithmClass")) %> <% { %>

Detail

<% AlgorithmClass ac = ((AlgorithmClassModel)Model).AlgorithmClass; %> <%: Html.Hidden("AlgorithmClassId", ac.Id.ToString(), ac.Id.ToString())%>
Id: <%: Html.Label(ac.Id.ToString())%>
Name: <%: Html.TextBox("AlgorithmClassName", ac.Name, ac.Name)%>
Description: <%: Html.TextBox("AlgorithmClassDescription", ac.Description, ac.Description)%>
Action:
<%: Html.ActionLink("back to Index","Index") %> <% } %>