private void Delete(int DeleteID)
 {
     ProfileManagementController objController = new ProfileManagementController();
     objController.DeleteProfileValueByProfileID(DeleteID, GetPortalID, GetUsername);
     objController.DeleteProfileByProfileID(DeleteID, GetUsername);
     RefreshGrid();
     ShowMessage(SageMessageTitle.Information.ToString(), GetSageMessage("UserManagement", "ProfileDeletedSuccessfully"), "", SageMessageType.Success);
 }