Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Edit:
I solved it, it works by updating tblPageLanguage, I just had to do an IISRESET for the changes to be seen, I suppose the old data was cached.
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:
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?
Any help is appreciated!