Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/AlgorithmClass/Detail.aspx @ 6304

Last change on this file since 6304 was 6304, checked in by dkahn, 13 years ago

#1198 Ongoing styling

File size: 1.8 KB
Line 
1<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
2
3<%@ Import Namespace="HLWebOKBAdminPlugin.Models" %>
4<%@ Import Namespace="HLWebOKBAdminPlugin.OKBAdministrationService" %>
5<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
6    Detail
7</asp:Content>
8<asp:Content ID="Content3" runat="server" ContentPlaceHolderID="SubMenuContent">
9   <% Html.RenderAction("Menu", "Admin"); %>
10</asp:Content>
11<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
12    <% using (Html.BeginForm("SaveChanges", "AlgorithmClass")) %>
13    <% { %>
14    <h2>Detail</h2>
15            <div class="hl-menuButtons">                 
16        <%: Html.ActionLink("Back to Index", "Index", null, new { @class = "hl-button-text-back" })%>
17        </div>
18    <% AlgorithmClass ac = ((AlgorithmClassModel)Model).AlgorithmClass; %>
19    <table class="hl-table">
20        <tr>
21            <th>
22                Id:
23            </th>
24            <td>
25                <%: Html.Label(ac.Id.ToString())%>
26            </td>
27            <%: Html.Hidden("AlgorithmClassId", ac.Id.ToString(), ac.Id.ToString())%>
28        </tr>
29        <tr>
30            <th>
31                Name:
32            </th>
33            <td>
34                <%: Html.TextBox("AlgorithmClassName", ac.Name, ac.Name)%>
35            </td>
36        </tr>
37        <tr>
38            <th>
39                Description:
40            </th>
41            <td>
42                <%: Html.TextBox("AlgorithmClassDescription", ac.Description, ac.Description)%>
43            </td>
44        </tr>
45        <tr>
46            <th>
47                Action:
48            </th>
49            <td>
50                <input type="submit" value="save" />
51            </td>
52        </tr>
53    </table>
54   
55    <% } %>
56</asp:Content>
Note: See TracBrowser for help on using the repository browser.