- Timestamp:
- 05/27/11 13:12:25 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Algorithm/Detail.aspx
r6290 r6304 23 23 Algorithm p = ((AlgorithmModel)Model).Algorithm; 24 24 %> 25 <table border="1"> 25 26 <div class="hl-menuButtons"> 27 <%: Html.ActionLink("Back to Index", "Index", null, new { @class = "hl-button-text-back" })%> 28 </div> 29 30 <table class="hl-table"> 26 31 <tr> 27 <t d>32 <th> 28 33 Id: 29 </t d>34 </th> 30 35 <td> 31 36 <%: Html.Label(p.Id.ToString())%> … … 34 39 </tr> 35 40 <tr> 36 <t d>41 <th> 37 42 Name: 38 </t d>43 </th> 39 44 <td> 40 45 <%: Html.TextBox("AlgorithmName", p.Name, p.Name)%> … … 42 47 </tr> 43 48 <tr> 44 <t d>49 <th> 45 50 Description: 46 </t d>51 </th> 47 52 <td> 48 53 <%: Html.TextBox("AlgorithmDescription", p.Description, p.Description)%> … … 50 55 </tr> 51 56 <tr> 52 <t d>57 <th> 53 58 DataTypeName: 54 </t d>59 </th> 55 60 <td> 56 61 <%: Html.TextBox("AlgorithmDataTypeName", p.DataTypeName, p.DataTypeName)%> … … 58 63 </tr> 59 64 <tr> 60 <t d>65 <th> 61 66 Algorith Class: 62 </t d>67 </th> 63 68 <td> 64 69 <select name="AlgorithmClassId"> … … 74 79 </tr> 75 80 <tr> 76 <t d>81 <th> 77 82 Platform: 78 </t d>83 </th> 79 84 <td> 80 85 <select name="PlatformId"> … … 90 95 </tr> 91 96 <tr> 92 <t d>97 <th> 93 98 Action: 94 </t d>99 </th> 95 100 <td> 96 101 <input type="submit" value="save" /> … … 104 109 {%><br /> 105 110 <% Algorithm p = ((AlgorithmModel)Model).Algorithm; %> 106 <table border="1">111 <table class="hl-table"> 107 112 <tr> 108 <t d>113 <th> 109 114 File: 110 </t d>115 </th> 111 116 <td> 112 117 <%: Html.Hidden("AlgorithmId", p.Id.ToString(), p.Id.ToString())%> … … 115 120 </tr> 116 121 <tr> 117 <t d>122 <th> 118 123 Action: 119 </t d>124 </th> 120 125 <td> 121 126 <input type="submit" value="Upload file" /> 122 127 </td> 123 128 </tr> 124 </table> 125 <%: Html.ActionLink("back to Index","Index") %> 129 </table> 130 126 131 <% } %> 127 132
Note: See TracChangeset
for help on using the changeset viewer.