您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

InvalidSample.cshtml 244B

12345678910111213
  1. @using Authentication_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. }