コード例 #1
0
        protected override void OnParametersSet()
        {
            _text = string.Empty;
            if (!String.IsNullOrEmpty(CreatedBy) || CreatedOn != null)
            {
                _text += "<p style=\"" + Style + "\">Created ";

                if (!String.IsNullOrEmpty(CreatedBy))
                {
                    _text += " by <b>" + CreatedBy + "</b>";
                }

                if (CreatedOn != null)
                {
                    _text += " on <b>" + CreatedOn.ToString("MMM dd yyyy HH:mm:ss") + "</b>";
                }

                _text += "</p>";
            }

            if (!String.IsNullOrEmpty(ModifiedBy) || ModifiedOn != null)
            {
                _text += "<p style=\"" + Style + "\">Last modified ";

                if (!String.IsNullOrEmpty(ModifiedBy))
                {
                    _text += " by <b>" + ModifiedBy + "</b>";
                }

                if (ModifiedOn != null)
                {
                    _text += " on <b>" + ModifiedOn.ToString("MMM dd yyyy HH:mm:ss") + "</b>";
                }

                _text += "</p>";
            }

            if (!String.IsNullOrEmpty(DeletedBy) || DeletedOn.HasValue)
            {
                _text += "<p style=\"" + Style + "\">Deleted ";

                if (!String.IsNullOrEmpty(DeletedBy))
                {
                    _text += " by <b>" + DeletedBy + "</b>";
                }

                if (DeletedOn != null)
                {
                    _text += " on <b>" + DeletedOn.Value.ToString("MMM dd yyyy HH:mm:ss") + "</b>";
                }

                _text += "</p>";
            }
        }