A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More

smithsson68@gmail.com
Jan 5, 2010
  8165
(0 votes)

Saving Page Objects

EPiServer CMS 6 introduces Page Objects. A Page Object is simply a .NET object that is created by the developer and then associated to an EPiServer CMS page via the EPiServer.Core.PageData.PageObjects collection.

Saving Page Objects is a relatively simple task but there a couple of pitfalls so here are some best practice guidelines to follow:

Saving a Page Object for the first time

Create your object as normal:

   1: MyClass obj = new MyClass();
   2: obj.StringValue = "Hello World!";

Add the object to the PageObjects collection for the current page:

   1: PageData pd = null;
   2:  
   3: if (this.CurrentPage.IsModified)
   4: {
   5:     pd = this.CurrentPage;
   6: }
   7: else
   8: {
   9:     pd = this.CurrentPage.CreateWritableClone();
  10: }
  11:  
  12: pd.PageObjects["MyKey"] = obj;

And then save the current page (as the same version)

   1: DataFactory.Instance.Save(pd, 
   2:                 EPiServer.DataAccess.SaveAction.Publish | 
   3:                 EPiServer.DataAccess.SaveAction.ForceCurrentVersion, 
   4:                 EPiServer.Security.AccessLevel.NoAccess);

Updating an existing object requires a modified flag to be set so the DataFactory knows what to update:

   1: PageData pd = null;
   2:  
   3: if (this.CurrentPage.IsModified)
   4: {
   5:     pd = this.CurrentPage;
   6: }
   7: else
   8: {
   9:     pd = this.CurrentPage.CreateWritableClone();
  10: }
  11:  
  12: // It is important to do the cloning first
  13: // as the clone has a different instance of
  14: // the Page Object to the original
  15: // and therefore you will update the 
  16: // wrong version!!
  17:  
  18: MyClass obj = pd.PageObjects["MyKey"] as MyClass;
  19: obj.StringValue = this.SomeTextBox.Text;
  20:  
  21: // Tell the collection something has changes
  22: pd.PageObjects.SetObjectModified(["MyKey");
  23:  
  24: // And Save
  25: DataFactory.Instance.Save(pd, 
  26:                 EPiServer.DataAccess.SaveAction.Publish |
  27:                 EPiServer.DataAccess.SaveAction.ForceCurrentVersion, 
  28:                 EPiServer.Security.AccessLevel.NoAccess);

IMPORTANT: Replacing an existing object will create a new row in the database if your object does not implement EPiServer.Data.Dynamic.IDynamicData as it’s identity cannot be determined.

Removing a Page Object is simple:

   1: PageData pd = null;
   2:  
   3: if (this.CurrentPage.IsModified)
   4: {
   5:     pd = this.CurrentPage;
   6: }
   7: else
   8: {
   9:     pd = this.CurrentPage.CreateWritableClone();
  10: }
  11:  
  12: pd.PageObjects.Remove("MyKey");
  13:  
  14: DataFactory.Instance.Save(pd, 
  15:                 EPiServer.DataAccess.SaveAction.Publish | 
  16:                 EPiServer.DataAccess.SaveAction.ForceCurrentVersion, 
  17:                 EPiServer.Security.AccessLevel.NoAccess);
Jan 05, 2010

Comments

Please login to comment.
Latest blogs
A day in the life of an Optimizely OMVP: Learning Optimizely Just Got Easier: Introducing the Optimizely Learning Centre

On the back of my last post about the Opti Graph Learning Centre, I am now happy to announce a revamped interactive learning platform that makes...

Graham Carr | Jan 31, 2026

Scheduled job for deleting content types and all related content

In my previous blog post which was about getting an overview of your sites content https://world.optimizely.com/blogs/Per-Nergard/Dates/2026/1/sche...

Per Nergård (MVP) | Jan 30, 2026

Working With Applications in Optimizely CMS 13

💡 Note:  The following content has been written based on Optimizely CMS 13 Preview 2 and may not accurately reflect the final release version. As...

Mark Stott | Jan 30, 2026

Experimentation at Speed Using Optimizely Opal and Web Experimentation

If you are working in experimentation, you will know that speed matters. The quicker you can go from idea to implementation, the faster you can...

Minesh Shah (Netcel) | Jan 30, 2026

How to run Optimizely CMS on VS Code Dev Containers

VS Code Dev Containers is an extension that allows you to use a Docker container as a full-featured development environment. Instead of installing...

Daniel Halse | Jan 30, 2026

A day in the life of an Optimizely OMVP: Introducing Optimizely Graph Learning Centre Beta: Master GraphQL for Content Delivery

GraphQL is transforming how developers query and deliver content from Optimizely CMS. But let's be honest—there's a learning curve. Between...

Graham Carr | Jan 30, 2026