Free cookie consent management tool by TermsFeed Policy Generator

Changeset 6310


Ignore:
Timestamp:
05/27/11 18:15:46 (13 years ago)
Author:
wtollsch
Message:

#1433 Platform views included, Index.aspx -> removed Html.Labels

Location:
branches/WebApplication/MVC2
Files:
6 added
5 edited

Legend:

Unmodified
Added
Removed
  • branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Admin/Menu.ascx

    r6271 r6310  
    22
    33<ul>
     4<li <% if(Session["SelectedSubMenu"] == "Platform") {%> class="selected" <%}%>>
     5    <%: Html.ActionLink("Platform", "Index", "Platform")%>
     6</li>
    47<li <% if(Session["SelectedSubMenu"] == "AlgorithmClass") {%> class="selected" <%}%>>
    58    <%: Html.ActionLink("AlgorithmClass", "Index", "AlgorithmClass")%>
  • branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Algorithm/Index.aspx

    r6304 r6310  
    3030      <tr>
    3131        <td>
    32           <%: Html.Label(p.Name)%>
     32          <%: p.Name %>
    3333        </td>
    3434        <td>
    35           <%: Html.Label(p.Description) %>
     35          <%: p.Description %>
    3636        </td>
    3737        <td>
    38           <%: Html.Label(p.DataTypeName)%>
     38          <%: p.DataTypeName %>
    3939        </td>
    4040                <td class="hl-iconcell">
  • branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/AlgorithmClass/Index.aspx

    r6304 r6310  
    3333            <tr>
    3434                <td>
    35                     <%: Html.Label(p.Name)%>
     35                    <%: p.Name %>
    3636                </td>
    3737                <td>
    38                     <%: Html.Label(p.Description) %>
     38                    <%: p.Description %>
    3939                </td>
    4040                <td class="hl-iconcell">
  • branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Problem/Index.aspx

    r6304 r6310  
    3333            <tr>
    3434                <td>
    35                     <%: Html.Label(p.Name)%>
     35                    <%: p.Name%>
    3636                </td>
    3737                <td>
    38                     <%: Html.Label(p.Description) %>
     38                    <%: p.Description %>
    3939                </td>
    4040                <td>
    41                     <%: Html.Label(p.DataTypeName)%>
     41                    <%: p.DataTypeName %>
    4242                </td>
    4343                <td class="hl-iconcell">
  • branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/ProblemClass/Index.aspx

    r6304 r6310  
    3333            <tr>
    3434                <td>
    35                     <%: Html.Label(p.Name)%>
     35                    <%: p.Name%>
    3636                </td>
    3737                <td>
    38                     <%: Html.Label(p.Description) %>
     38                    <%: p.Description %>
    3939                </td>
    4040                <td class="hl-iconcell">
Note: See TracChangeset for help on using the changeset viewer.