File: D:/HostingSpaces/RMourik/bassol.nl/wwwroot/CMSAdminControls/Debug/HandlersLog.ascx.cs
using System;
using CMS.ExtendedControls;
using CMS.UIControls;
public partial class CMSAdminControls_Debug_HandlersLog : HandlersLog
{
protected override void OnPreRender(EventArgs e)
{
base.OnPreRender(e);
Visible = false;
var dt = GetLogData();
if (dt != null)
{
Visible = true;
// Setup headers text
gridStates.SetHeaders("", "HandlersLog.Name", "General.Context");
HeaderText = GetString("HandlersLog.Info");
gridStates.DataSource = dt;
gridStates.DataBind();
}
}
}