File tree Expand file tree Collapse file tree 4 files changed +11
-6
lines changed
RandomData2/RandomDataWebApi/Areas/HelpPage/Views/Help Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 11@using System .Web .Http
2+ @using RandomDataWebApi
23@using RandomDataWebApi .Areas .HelpPage .Models
34@model HelpPageApiModel
45
1213 <section class =" featured" >
1314 <div class =" content-wrapper" >
1415 <p >
15- @Html.ActionLink( "Random Data Web API" , "Index")
16+ @Html.ActionLink(WebApiApplication.Title , "Index")
1617 </p >
1718 </div >
1819 </section >
Original file line number Diff line number Diff line change 22@using System .Web .Http .Controllers
33@using System .Web .Http .Description
44@using System .Collections .ObjectModel
5+ @using RandomDataWebApi
56@using RandomDataWebApi .Areas .HelpPage .Models
67@model Collection <ApiDescription >
78
89@{
9- ViewBag .Title = " Random Data Web API " ;
10+ ViewBag .Title = WebApiApplication . Title ;
1011
1112 // Group APIs by controller
1213 ILookup <HttpControllerDescriptor , ApiDescription > apiGroups = Model .ToLookup (api => api .ActionDescriptor .ControllerDescriptor );
Original file line number Diff line number Diff line change 1- @{
2- ViewBag .Title = " Random Data Web API - Test" ;
1+ @using RandomDataWebApi
2+
3+ @{
4+ ViewBag .Title = $" {WebApiApplication .Title } - Test" ;
35}
46
57<script src =" https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.js" type =" text/javascript" ></script >
810 <section class =" featured" >
911 <div class =" content-wrapper" >
1012 <p >
11- @Html.ActionLink( "Random Data Web API" , "Index")
13+ @Html.ActionLink(WebApiApplication.Title , "Index")
1214 </p >
1315 </div >
1416 </section >
Original file line number Diff line number Diff line change 11@using System .Web .Http
2+ @using RandomDataWebApi
23@using RandomDataWebApi .Areas .HelpPage .ModelDescriptions
34@model ModelDescription
45
78 <section class =" featured" >
89 <div class =" content-wrapper" >
910 <p >
10- @Html.ActionLink( "Random Data Web API" , "Index")
11+ @Html.ActionLink(WebApiApplication.Title , "Index")
1112 </p >
1213 </div >
1314 </section >
You can’t perform that action at this time.
0 commit comments