Files
OnDoc/API_NetFramework - Kopie (2)/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml
Stefan Hutter 00eae8a837 Update 20250204
2025-02-04 22:36:20 +01:00

13 lines
241 B
Plaintext

@using API_NetFramework.Areas.HelpPage
@model InvalidSample
@if (HttpContext.Current.IsDebuggingEnabled)
{
<div class="warning-message-container">
<p>@Model.ErrorMessage</p>
</div>
}
else
{
<p>Sample not available.</p>
}