Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Views/AlgorithmClass/Index.aspx @ 5756

Last change on this file since 5756 was 5756, checked in by cfleisch, 13 years ago

Test Query Plugin added #1439

File size: 2.0 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:ImageButton ID="btnAddAlgorithmClass" runat="server"             
17            ImageUrl="~/Resources/Plus.bmp" ToolTip="Add Class" BorderColor="Black"
18            CommandArgument="Id" onclick="~/Controllers/AddAlgorithmClass" />
19        <asp:ImageButton ID="btnDelAlgorithmClass" runat="server"
20            ImageUrl="~/Resources/Delete.bmp" ToolTip="Delete Class"
21            CommandArgument="Id" CommandName="lgorithmClass" />
22        <asp:ImageButton ID="btnUpdAlgorithmClass" runat="server"
23            CommandArgument="Id"
24            ImageUrl="~/Resources/Update.bmp" />
25    </asp:Panel>
26    <p>
27        <asp:ListBox ID="lbAlgorithmClasses" runat="server" DataSourceID="ODSAlgorithmClasses"
28            DataTextField="Name" DataValueField="Id" Height="350px" style="margin-top: 0px"
29            Width="246px">
30        </asp:ListBox>
31        <asp:ObjectDataSource ID="ODSAlgorithmClasses" runat="server"
32            SelectMethod="AlgorithmClassGetAll"
33            TypeName="HLWebPluginHost.Models.AlgorithmClassModel">
34        </asp:ObjectDataSource>
35       
36
37    </p>
38   
39
40    <asp:Panel ID="pDetailAlgorithmClass" runat="server" Height="139px">
41        <asp:Label ID="lbName" runat="server" Text="Name:"></asp:Label>
42        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
43        <asp:TextBox ID="txtName1" runat="server" Width="197px"></asp:TextBox>
44        <br />
45        Description:
46        <asp:TextBox ID="txtDescription" runat="server" Width="197px"></asp:TextBox>
47    </asp:Panel>
48   
49
50    </form>
51
52   
53
54</asp:Content>
Note: See TracBrowser for help on using the repository browser.