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

InvalidSample.cshtml 241B

12345678910111213
  1. @using WebAPiUtils_test.Areas.HelpPage
  2. @model InvalidSample
  3. @if (HttpContext.Current.IsDebuggingEnabled)
  4. {
  5. <div class="warning-message-container">
  6. <p>@Model.ErrorMessage</p>
  7. </div>
  8. }
  9. else
  10. {
  11. <p>Sample not available.</p>
  12. }