Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Admin/ProblemClass.aspx @ 6246

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

#1433 AlgorithmClass, Algorithm, ProblemClass, Problem create/update appropriate controller/models/views, File upload (Algorithm / Problem)

File size: 841 bytes
Line 
1<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
2
3<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
4  ProblemClass
5</asp:Content>
6
7<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
8    <form id="formProblemClass" runat="server">
9
10        <h2>ProblemClass</h2>
11
12        <asp:ListBox ID="lbxProblemClasses" runat="server" DataSourceID="odsProblemClass"
13            DataTextField="Name" DataValueField="Id" Width="240px" Height="350px" style="margin-top: 0px"></asp:ListBox>
14        <asp:ObjectDataSource ID="odsProblemClass" runat="server"
15            SelectMethod="ProblemClassGetAll"
16            TypeName="HLWebOKBAdminPlugin.Models.AdminModel"></asp:ObjectDataSource>
17    </form>
18</asp:Content>
Note: See TracBrowser for help on using the repository browser.