Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Admin/Algorithm.aspx @ 6117

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

#1433 completed add, delete and update methods for AlgorithmClass, Algorithm, ProblemClass, Problem in AdminModel

File size: 966 bytes
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  Algorithm
9</asp:Content>
10
11<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
12
13    <form id="formAlgorithm" runat="server">
14
15    <h2>Algorithm</h2>
16
17    <asp:ListBox ID="lbxAlgorithm" runat="server" DataSourceID="odsAlgorithm"
18        DataTextField="Name" DataValueField="Id" Width="240px" Height="350px"
19        style="margin-top: 0px" AutoPostBack="True"></asp:ListBox>
20    <asp:ObjectDataSource ID="odsAlgorithm" runat="server"
21        SelectMethod="AlgorithmsGetAll"
22        TypeName="HLWebOKBAdminPlugin.Models.AdminModel"></asp:ObjectDataSource>
23    </form>
24
25</asp:Content>
Note: See TracBrowser for help on using the repository browser.