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.

InvalidSample.cshtml 234B

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