We display "Created by", and "Changed by" on most pages in our project. I would like to update the database to change all records where Created by = 'X' to 'Y'.
The code to display this information looks like this:
protected string CreateDate()
{
var email = EPiServerProfile.Get(CurrentPage.CreatedBy).Email;
var mailLink = string.Format("{1}", email, CurrentPage.CreatedBy);
return string.Format(LanguageManager.Instance.Translate("/content/publishedby"), CurrentPage.Created, mailLink);
}
I've tried changing the "CreatorName" field in tblPageLanguage to no effect.
I feel it's an easy thing to do if you just know what to update in the database?
Hi!
We display "Created by", and "Changed by" on most pages in our project. I would like to update the database to change all records where Created by = 'X' to 'Y'.
The code to display this information looks like this:
I've tried changing the "CreatorName" field in tblPageLanguage to no effect.
I feel it's an easy thing to do if you just know what to update in the database?
Any help is appreciated!