Last change
on this file since 6843 was
5763,
checked in by wtollsch, 14 years ago
|
#1433 connection with new AdministrationService established
|
File size:
1.4 KB
|
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 | Index
|
---|
5 | </asp:Content>
|
---|
6 |
|
---|
7 |
|
---|
8 | <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
---|
9 |
|
---|
10 | <form id="form1" runat="server">
|
---|
11 |
|
---|
12 |
|
---|
13 | <h2>AlgorithmClasses</h2>
|
---|
14 |
|
---|
15 | <asp:Panel ID="pMenu" runat="server">
|
---|
16 | </asp:Panel>
|
---|
17 | <p>
|
---|
18 | <asp:ListBox ID="lbAlgorithmClasses" runat="server" DataSourceID="ODSAlgorithmClasses"
|
---|
19 | DataTextField="Name" DataValueField="Id" Height="350px" style="margin-top: 0px"
|
---|
20 | Width="246px">
|
---|
21 | </asp:ListBox>
|
---|
22 | <asp:ObjectDataSource ID="ODSAlgorithmClasses" runat="server"
|
---|
23 | SelectMethod="AlgorithmClassGetAll"
|
---|
24 | TypeName="HLWebPluginHost.Models.AlgorithmClassModel">
|
---|
25 | </asp:ObjectDataSource>
|
---|
26 |
|
---|
27 |
|
---|
28 | </p>
|
---|
29 |
|
---|
30 |
|
---|
31 | <asp:Panel ID="pDetailAlgorithmClass" runat="server" Height="139px">
|
---|
32 | <asp:Label ID="lbName" runat="server" Text="Name:"></asp:Label>
|
---|
33 |
|
---|
34 | <asp:TextBox ID="txtName1" runat="server" Width="197px"></asp:TextBox>
|
---|
35 | <br />
|
---|
36 | Description:
|
---|
37 | <asp:TextBox ID="txtDescription" runat="server" Width="197px"></asp:TextBox>
|
---|
38 | </asp:Panel>
|
---|
39 |
|
---|
40 |
|
---|
41 | </form>
|
---|
42 |
|
---|
43 |
|
---|
44 |
|
---|
45 | </asp:Content>
|
---|
Note: See
TracBrowser
for help on using the repository browser.