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:
968 bytes
|
Rev | Line | |
---|
[6050] | 1 | <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
|
---|
| 2 |
|
---|
| 3 |
|
---|
| 4 | <asp:Content ID="Content3" runat="server" ContentPlaceHolderID="SubMenuContent">
|
---|
| 5 | <% Html.RenderAction("Menu"); %>
|
---|
| 6 | </asp:Content>
|
---|
| 7 |
|
---|
| 8 | <asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
---|
| 9 | Problem
|
---|
| 10 | </asp:Content>
|
---|
| 11 |
|
---|
| 12 | <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
---|
| 13 |
|
---|
| 14 | <form id="formProblem" runat="server">
|
---|
| 15 |
|
---|
| 16 | <h2>Problem</h2>
|
---|
| 17 |
|
---|
| 18 | <asp:ListBox ID="lbxProblem" runat="server"
|
---|
| 19 | Width="240px" Height="350px" style="margin-top: 0px"
|
---|
| 20 | DataSourceID="odsProblem" DataTextField="Name" DataValueField="Id"></asp:ListBox>
|
---|
| 21 | <asp:ObjectDataSource ID="odsProblem" runat="server"
|
---|
| 22 | SelectMethod="ProblemsGetAll" TypeName="HLWebOKBAdminPlugin.Models.AdminModel">
|
---|
| 23 | </asp:ObjectDataSource>
|
---|
| 24 | </form>
|
---|
| 25 |
|
---|
| 26 | </asp:Content>
|
---|
Note: See
TracBrowser
for help on using the repository browser.