Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Admin/AlgorithmClass.aspx @ 6050

Last change on this file since 6050 was 6050, checked in by wtollsch, 14 years ago

#1433 menue entries and views for OKB Admin created / adapted, each view contains a listbox

File size: 1.1 KB
Line 
1<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
2
3<asp:Content ID="Content3" runat="server" ContentPlaceHolderID="SubMenuContent">
4   <% Html.RenderAction("Menu"); %>
5</asp:Content>
6
7<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
8  AlgorithmClass
9</asp:Content>
10
11<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
12
13    <form id="formAlgorithmClass" runat="server">
14
15    <h2>AlgorithmClass</h2>   
16
17     <asp:ListBox ID="lbxAlgorithmClasses" runat="server" 
18            DataTextField="Name" DataValueField="Id" Height="350px" style="margin-top: 0px"
19            Width="240px" DataSourceID="odsAlgorithmClasses">
20        </asp:ListBox>
21   
22    <asp:ObjectDataSource ID="odsAlgorithmClasses" runat="server"
23        SelectMethod="AlgorithmClassGetAll"
24        TypeName="HLWebOKBAdminPlugin.Models.AdminModel"></asp:ObjectDataSource>
25   
26    <p>
27        <%: Html.ActionLink("Create New", "Create") %>
28    </p>
29
30    </form>
31
32</asp:Content>
33
Note: See TracBrowser for help on using the repository browser.