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.
 
 
 
 
 

37 lines
964 B

using Swift.DAL.BL.System.Notification;
using Swift.web.Library;
using System;
namespace Swift.web.ApplicationLog
{
public partial class ViewDetail : System.Web.UI.Page
{
private string id = null;
private readonly RemittanceLibrary _sl = new RemittanceLibrary();
private readonly ApplicationLogsDao _obj = new ApplicationLogsDao();
protected void Page_Load(object sender, EventArgs e)
{
_sl.CheckSession();
loadData();
}
protected string getId()
{
return GetStatic.ReadQueryString("id", "");
}
private void loadData()
{
var dr = _obj.getData(getId().ToString());
if (dr == null)
{
return;
}
var msg = dr["UserData"].ToString().Trim();
msg = msg.Replace("-:::-", "</br>");
logMsg.InnerHtml = msg.ToString();
}
}
}