%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %> <%@ Import Namespace="HLWebOKBAdminPlugin.Models" %> <%@ Import Namespace="HLWebOKBAdminPlugin.OKBAdministrationService" %> Index AlgorithmClass <% long? id = null; %> <%: Html.ActionLink("New AlgorithmClass", "Detail", new {id}) %> <%: Html.ActionLink("Order ASC", "SortAsc")%> <%: Html.ActionLink("Order DESC", "SortDesc")%> <% foreach (AlgorithmClass p in ((AlgorithmClassModel)Model).AlgorithmClasses) { %> <%: Html.Label(p.Name)%> <%: Html.Label(p.Description) %> <%: Html.ActionLink("detail", "Detail", new { p.Id })%> <%: Html.ActionLink("delete", "Delete",new {p.Id}) %> <% } %>