21 lines
716 B
Plaintext
21 lines
716 B
Plaintext
<%@ Page Title="" Language="C#" MasterPageFile="~/SiteContained.master" AutoEventWireup="true" CodeBehind="showLog.aspx.cs" Inherits="WebLCP.showLog" %>
|
|
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
|
|
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h3>Error Log - <b><%: errorDescr %></b></h3>
|
|
<div class="card-body">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
Here the last rows of debug message you can check for suggestion.
|
|
</div>
|
|
<div class="col-12 border border-danger border-rounded">
|
|
<%= Server.HtmlDecode(outputLog) %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</asp:Content>
|