Free cookie consent management tool by TermsFeed Policy Generator

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

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

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

File size: 978 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  ProblemClass
9</asp:Content>
10
11<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
12    <form id="formProblemClass" runat="server">
13
14        <h2>ProblemClass</h2>
15
16        <asp:ListBox ID="lbxProblemClasses" runat="server" DataSourceID="odsProblemClass"
17            DataTextField="Name" DataValueField="Id" Width="240px" Height="350px" style="margin-top: 0px"></asp:ListBox>
18        <asp:ObjectDataSource ID="odsProblemClass" runat="server"
19            SelectMethod="ProblemClassGetAll"
20            TypeName="HLWebOKBAdminPlugin.Models.AdminModel"></asp:ObjectDataSource>
21    </form>
22</asp:Content>
Note: See TracBrowser for help on using the repository browser.