Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

Api.cshtml 653B

12345678910111213141516171819202122232425
  1. @using System.Web.Http
  2. @using Logs_test.Areas.HelpPage.Models
  3. @model HelpPageApiModel
  4. @{
  5. var description = Model.ApiDescription;
  6. ViewBag.Title = description.HttpMethod.Method + " " + description.RelativePath;
  7. }
  8. <div id="body">
  9. <section class="featured">
  10. <div class="content-wrapper">
  11. <p>
  12. @Html.ActionLink("Help Page Home", "Index")
  13. </p>
  14. </div>
  15. </section>
  16. <section class="content-wrapper main-content clear-fix">
  17. @Html.DisplayFor(m => Model)
  18. </section>
  19. </div>
  20. @section Scripts {
  21. <link type="text/css" href="~/Areas/HelpPage/HelpPage.css" rel="stylesheet" />
  22. }