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

Detail

<%: Html.ActionLink("Back to Index", "Index", null, new { @class = "hl-button-text-back" })%>
<% 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:
<% } %>