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