選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ResourceModel.cshtml 588B

12345678910111213141516171819
  1. @using System.Web.Http
  2. @using CacheControl_test.Areas.HelpPage.ModelDescriptions
  3. @model ModelDescription
  4. <link type="text/css" href="~/Areas/HelpPage/HelpPage.css" rel="stylesheet" />
  5. <div id="body" class="help-page">
  6. <section class="featured">
  7. <div class="content-wrapper">
  8. <p>
  9. @Html.ActionLink("Help Page Home", "Index")
  10. </p>
  11. </div>
  12. </section>
  13. <h1>@Model.Name</h1>
  14. <p>@Model.Documentation</p>
  15. <section class="content-wrapper main-content clear-fix">
  16. @Html.DisplayFor(m => Model)
  17. </section>
  18. </div>