- Timestamp:
- 05/04/11 22:50:21 (14 years ago)
- Location:
- branches/WebApplication/MVC2
- Files:
-
- 5 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/HLWebOKBAdminPlugin.csproj
r6050 r6130 90 90 <Compile Include="Controllers\AdminController.cs" /> 91 91 <Compile Include="Controllers\HomeController.cs" /> 92 <Compile Include="Controllers\ProblemController.cs" /> 92 93 <Compile Include="Global.asax.cs"> 93 94 <DependentUpon>Global.asax</DependentUpon> … … 98 99 <Compile Include="Models\AdminModel.cs" /> 99 100 <Compile Include="Models\AlgorithmClassModel.cs" /> 101 <Compile Include="Models\ProblemModel.cs" /> 100 102 <Compile Include="Properties\AssemblyInfo.cs" /> 101 103 <Compile Include="Service References\OKBAdministrationService\Reference.cs"> … … 142 144 <Content Include="Views\Home\About.aspx" /> 143 145 <Content Include="Views\Home\Index.aspx" /> 146 <Content Include="Views\Problem\Detail.aspx" /> 147 <Content Include="Views\Problem\Index.aspx" /> 144 148 <Content Include="Views\ServiceTest\Index.aspx" /> 145 149 <Content Include="Web.config"> -
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Admin/Menu.ascx
r6050 r6130 12 12 </li> 13 13 <li <% if(Session["SelectedSubMenu"] == "Problem") {%> class="selected" <%}%>> 14 <%: Html.ActionLink("Problem", " Problem", "Admin") %>14 <%: Html.ActionLink("Problem", "Index", "Problem") %> 15 15 </li> 16 16 </ul>
Note: See TracChangeset
for help on using the changeset viewer.