Example #1
0
 /// <summary>
 /// Updates the Audit Trail Information for a particular List
 /// </summary>
 /// <param name="pageId">The page id.</param>
 /// <param name="auditListName">Name of the audit list.</param>
 /// <param name="actionPerformed">The action performed.</param>
 protected void UpdateAuditHistory(string pageId, string auditListName, string actionPerformed)
 {
     objCommonBLL = new CommonBLL();
     strUserName = GetUserName();
     objCommonBLL.UpdateAuditTrail(strParentSiteURL, pageId, auditListName, strUserName, actionPerformed);
 }