- Timestamp:
- 05/07/11 14:17:42 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Problem/Detail.aspx
r6142 r6153 61 61 <select name="ProblemClassId"> 62 62 <% foreach(ProblemClass pc in ((ProblemModel)Model).ProblemClasses) { %> 63 <% if(p.ProblemClassId == pc.Id) { %> 64 <option selected="selected" value="<%=pc.Id%>"><%=pc.Name%></option> 65 <% } else { %> 63 66 <option value="<%=pc.Id%>"><%=pc.Name%></option> 67 <% } %> 64 68 <% } %> 65 69 </select> … … 73 77 <select name="PlattformId"> 74 78 <% foreach(Platform pc in ((ProblemModel)Model).Plattforms) { %> 79 <% if(p.PlatformId == pc.Id) { %> 80 <option selected="selected" value="<%=pc.Id%>"><%=pc.Name%></option> 81 <% } else { %> 75 82 <option value="<%=pc.Id%>"><%=pc.Name%></option> 83 <% } %> 76 84 <% } %> 77 85 </select>
Note: See TracChangeset
for help on using the changeset viewer.