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.
 
 
 
 
 

23 lines
544 B

using Swift.DAL.ApplicationLogs;
using Swift.web.Library;
using System;
namespace Swift.web.ApplicationLog
{
public partial class ErrorDetail : System.Web.UI.Page
{
private readonly LogDAO lg = new LogDAO();
protected void Page_Load(object sender, EventArgs e)
{
LoadErrorData();
}
private void LoadErrorData()
{
var dr = lg.GetErrorDetails(GetStatic.ReadQueryString("id", ""));
error.InnerHtml = dr["errorDetails"].ToString();
}
}
}