Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

InvalidSample.cshtml 242B

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