This commit is contained in:
zel
2025-02-10 16:50:57 +08:00
parent c4bdebd92c
commit 20ac0b5069
7 changed files with 21 additions and 21 deletions

View File

@@ -6,11 +6,11 @@
}
<h3>
Exception
异常明细
</h3>
<p>
Server and page exception.<br /><br />
<br /><br />
</p>
@if (!string.IsNullOrEmpty(Model.ErrorMessage))
@@ -27,21 +27,21 @@
<table class="table fixedTable100 table-striped" border="0" cellspacing="0" cellpadding="0">
<tr><td><strong>Id</strong></td></tr>
<tr><td>@Model.Exception.Id</td></tr>
<tr><td><strong>Date / Time</strong></td></tr>
<tr><td><strong>时间</strong></td></tr>
<tr><td>@Model.Exception.CreatedDate</td></tr>
@if (string.IsNullOrEmpty(Model.Exception.Text) == false)
{
<tr><td><strong>Text</strong></td></tr>
<tr><td><strong>异常</strong></td></tr>
<tr><td>@Model.Exception.Text</td></tr>
}
@if (string.IsNullOrEmpty(Model.Exception.ExceptionText) == false)
{
<tr><td><strong>Exception</strong></td></tr>
<tr><td><strong>异常明细</strong></td></tr>
<tr><td>@Model.Exception.ExceptionText</td></tr>
}
@if (string.IsNullOrEmpty(Model.Exception.StackTrace) == false)
{
<tr><td><strong>Stack Trace</strong></td></tr>
<tr><td><strong>堆栈跟踪</strong></td></tr>
<tr><td>@Model.Exception.StackTrace</td></tr>
}
</table>