Last change
on this file since 5005 was
5005,
checked in by wtollsch, 14 years ago
|
#1198 AddAlgorithmClass: prototype test successful... new AlgorithmClass added from HLWebOKBAdminPlugin
|
File size:
2.0 KB
|
Line | |
---|
1 | <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
|
---|
2 |
|
---|
3 |
|
---|
4 | <asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
---|
5 | Index
|
---|
6 | </asp:Content>
|
---|
7 |
|
---|
8 |
|
---|
9 | <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
---|
10 |
|
---|
11 | <form id="form1" runat="server">
|
---|
12 |
|
---|
13 |
|
---|
14 | <h2>AlgorithmClasses</h2>
|
---|
15 |
|
---|
16 | <asp:Panel ID="pMenu" runat="server">
|
---|
17 | <asp:ImageButton ID="btnAddAlgorithmClass" runat="server"
|
---|
18 | ImageUrl="~/Resources/Plus.bmp" ToolTip="Add Class" BorderColor="Black"
|
---|
19 | CommandArgument="Id" onclick="btnAddAlgorithmClass_Click" />
|
---|
20 | <asp:ImageButton ID="btnDelAlgorithmClass" runat="server"
|
---|
21 | ImageUrl="~/Resources/Delete.bmp" ToolTip="Delete Class"
|
---|
22 | CommandArgument="Id" CommandName="lgorithmClass" />
|
---|
23 | <asp:ImageButton ID="btnUpdAlgorithmClass" runat="server"
|
---|
24 | CommandArgument="Id"
|
---|
25 | ImageUrl="~/Resources/Update.bmp" />
|
---|
26 | </asp:Panel>
|
---|
27 | <p>
|
---|
28 | <asp:ListBox ID="lbAlgorithmClasses" runat="server" DataSourceID="ODSAlgorithmClasses"
|
---|
29 | DataTextField="Name" DataValueField="Id" Height="350px" style="margin-top: 0px"
|
---|
30 | Width="246px">
|
---|
31 | </asp:ListBox>
|
---|
32 | <asp:ObjectDataSource ID="ODSAlgorithmClasses" runat="server"
|
---|
33 | SelectMethod="AlgorithmClassGetAll"
|
---|
34 | TypeName="HLWebPluginHost.Models.AlgorithmClassModel">
|
---|
35 | </asp:ObjectDataSource>
|
---|
36 |
|
---|
37 |
|
---|
38 | </p>
|
---|
39 |
|
---|
40 |
|
---|
41 | <asp:Panel ID="pDetailAlgorithmClass" runat="server" Height="139px">
|
---|
42 | <asp:Label ID="lbName" runat="server" Text="Name:"></asp:Label>
|
---|
43 |
|
---|
44 | <asp:TextBox ID="txtName1" runat="server" Width="197px"></asp:TextBox>
|
---|
45 | <br />
|
---|
46 | Description:
|
---|
47 | <asp:TextBox ID="txtDescription" runat="server" Width="197px"></asp:TextBox>
|
---|
48 | </asp:Panel>
|
---|
49 |
|
---|
50 |
|
---|
51 | </form>
|
---|
52 |
|
---|
53 |
|
---|
54 |
|
---|
55 | </asp:Content>
|
---|
Note: See
TracBrowser
for help on using the repository browser.