HomeDev GuideAPI Reference
Dev GuideAPI ReferenceUser GuideGitHubNuGetDev CommunitySubmit a ticketLog In
GitHubNuGetDev CommunitySubmit a ticket

Create a starter project

Describes how to create an empty Optimizely Content Management System (CMS) project, add a page type and configure a start page for the site.

For better control and understanding, you should start developing in an empty project. Before doing this (and if you are new to Optimizely), you should install and explore a sample site, and get a Optimizely user interface.

📘

Note

An empty Optimizely Content Management System (CMS) site supports both Windows authentication and SQL membership provider (multiplex), so in this case you can log in with your Windows credentials. If you install a project outside the default location Documents > Visual Studio > Projects, ensure that the current user has write permission to the parent directory to which you are installing, as SQL LocalDB does not respect the Administrators group.

Create the project

Follow the step 1-7 in Installing a sample site and select Empty in step 4 to create an MVC-based empty site.

You can also watch the following Optimizely installation video to see how it is done.

After you completed all steps, continue with the next step The project structure.

Project structure

The project creation process completes these actions:

  • Installs main components through NuGet packages (EPiServer.CMS which references EPiServer.CMS.Core, EPiServer.CMS.UI and so on).
  • Creates a database in the App_Data folder and configures it with the correct database schema.
  • Updates configuration files, such as web.config, with connection strings.
  • Installs the Optimizely user interface components and places them under the URL /episerver.

When finalized, you have a project folder structure containing:

  • App_Data with the content database, and the default log file.
  • Business for business logic and helper libraries added during development.
  • Controllers for controller classes handling user input and responses.
  • Models for content classes representing and manipulating data.
  • Static for design and layout files such as scripts, images, and style sheets.
  • Views for renderers.

📘

Note

The site is configured to use IIS Express. If you attempt to run it under Visual Studio Development Server, you may get unexpected behaviors, since the site has a different runtime and configuration model. When you install an empty site, there will be no search, this will be added later.

Create a page type 

Create a simple standard page type based on MVC, with an editorial area and a heading. Page types created this way inherit from the IContent interface in Content model and views, providing some built-in functionality used in many content types.

📘

Note

You need to be an administrator for the site to create a page under the website root.

  1. In Visual Studio, go to the Models folder, and right-click on Pages.

  2. Select Add > New Item, then Episerver and Page Type. 

  3. Name the item StandardPage.cs and click Add.

  4. Uncomment the block with property MainBody. This property is added by default as it is commonly used, but is commented out and can be removed if not needed.

  5. Add a property of type String before the Mainbody property. Copy the attributes from MainBody, set the sort order to 0, and change the Name and Description.

  6. Compile your solution, log in and go to edit view.

  7. Under Start (root level), create a new page named First page.  The StandardPage is automatically applied because this is currently the only available page type.

  8. Add some text in the heading and main body properties, and publish the page. Since there is no rendering, the page will open in the All Properties editing view, and will not be accessible on the front-end side.

Add page rendering

Add rendering to make the page accessible on the front-end side. This will also automatically make the On-page editing view accessible, for quick editing of selected properties.  

  1. In Visual Studio, right-click on the Controllers folder of your project.

  2. Select Add > New Item, then Episerver and Page Controller (MVC).

  3. Name the item StandardPageController.cs and click Add.

  4. The controller class will inherit from EPiServer.Web.Mvc.PageController, and will automatically use the StandardPage page type by naming convention in the Optimizely Visual Studio extension. Resolve the references to StandardPage by adding the proper using statement for your site.

  5. Right-click on the Views folder, select Add > New Folder, and name it StandardPage.

  6. Right-click on the StandardPage folder, select Add > New item, and then Page Partial View (MVC Razor) under the Episerver group.

  7. Name the view Index.cshtml and click Add.

  8. In the Index.cshtml file, change the model to be YourSite.Models.Pages.StandardPage, add the rendering for the Heading property with an

    tag before the MainBody property.

  9. Build your solution, and log in to the edit view. The page you created now has rendering, and can be edited through the On-Page edit view.

  10. Select View on website under Publish, to verify that the page can also be accessed from the front-end side. Notice the URL reflecting the language and page structure of the site.

  11. Add a few more pages to your site, so you have a page tree structure.

Configure the start page

Your now have a set of accessible pages, but the site itself is not configured. In this final step we configure the site from the Optimizely admin view.

  1. Configure the site start page by going to Admin > Config > Manage Websites. Click Add site, and enter the site name and the site URL (localhost).

  2. Select a page in the page tree structure as start page, and click Save.

  3. Notice the new start page in your page tree structure. This also means that you can access your site from the front-end by browsing to the site URL that you have configured.

After completing this you have a working site with a start page configured, to be used as a starting point for continued development. The next steps are typical in an Optimizely implementation.