<%@ 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", "Platform")) %> <% { %>

Detail

<%: Html.ActionLink("Back to Index", "Index", null, new { @class = "hl-button-text-back" })%>
<% Platform pc = ((PlatformModel)Model).Platform; %> <%: Html.Hidden("PlatformId", pc.Id.ToString(), pc.Id.ToString())%>
Id: <%: Html.Label(pc.Id.ToString())%>
Name: <%: Html.TextBox("PlatformName", pc.Name, pc.Name)%>
Description: <%: Html.TextBox("PlatformDescription", pc.Description, pc.Description)%>
Action:
<% } %>