Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Shared/EditorTemplates/AlgorithmClass.ascx @ 11733

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

#1198 MVC2 plugin template added for HL OKBWebClient

File size: 1.4 KB
Line 
1<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<HLWebPluginHost.OKBService.AlgorithmClass>" %>
2
3    <% using (Html.BeginForm()) {%>
4        <%: Html.ValidationSummary(true) %>
5       
6        <fieldset>
7            <legend>Felder</legend>
8           
9            <div class="editor-label">
10                <%: Html.LabelFor(model => model.Description) %>
11            </div>
12            <div class="editor-field">
13                <%: Html.TextBoxFor(model => model.Description) %>
14                <%: Html.ValidationMessageFor(model => model.Description) %>
15            </div>
16           
17            <div class="editor-label">
18                <%: Html.LabelFor(model => model.Name) %>
19            </div>
20            <div class="editor-field">
21                <%: Html.TextBoxFor(model => model.Name) %>
22                <%: Html.ValidationMessageFor(model => model.Name) %>
23            </div>
24           
25            <div class="editor-label">
26                <%: Html.LabelFor(model => model.Id) %>
27            </div>
28            <div class="editor-field">
29                <%: Html.TextBoxFor(model => model.Id) %>
30                <%: Html.ValidationMessageFor(model => model.Id) %>
31            </div>           
32        </fieldset>
33
34    <% } %>
35
36    <div>
37        <%: Html.ActionLink("Back to List", "Index") %>
38    </div>
39
40
Note: See TracBrowser for help on using the repository browser.