纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
646 B

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