Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 6162 was 6162, checked in by gschwarz, 13 years ago

#1433 Updated Problem Control/View

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