Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Views/AlgorithmClass/Delete.aspx @ 5186

Last change on this file since 5186 was 5186, checked in by wtollsch, 14 years ago

#1198 MVC2 plugin template added for HL OKBWebClient

File size: 774 bytes
Line 
1<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<HLWebOKBAdminPlugin.ViewModels.AlgorithmClassViewModel>" %>
2
3<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
4  Delete
5</asp:Content>
6
7<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
8
9    <h2>Delete</h2>
10
11    <p>Are you sure you want to delete AlgorithmClass <strong><%: Model.AlgorithmClass.Name %></strong>?</p>
12    <fieldset>
13        <legend>Fields</legend>
14       
15    </fieldset>
16    <% using (Html.BeginForm()) { %>
17        <p>
18        <input type="submit" value="Delete" /> |
19        <%: Html.ActionLink("Back to List", "Index") %>
20        </p>
21    <% } %>
22
23</asp:Content>
24
Note: See TracBrowser for help on using the repository browser.