Create the controller

To create a new controller, perform the following:

  1. In the context menu of folder Mvc\Controllers, click Add» Class...
  2. Name the class FeatureController.cs.
  3. Inherit from the System.Web.Mvc.Controller class.
  4. Add method Index that returns an object of type ActionResult.
    Each controller can have multiple actions, which are mapped to methods in the class.
  5. Modify the code of the Index action to return a list of features in version 5.1.
    In this example, the Index action returns a list of items from the model that you created in the previous article.

Use the following code sample:

C#
using SitefinityWebApp.Mvc.Models;
using System.Collections.Generic;
using System.ComponentModel;
using System.Web.Mvc;
using Telerik.Sitefinity.Mvc;

namespace SitefinityWebApp.Mvc.Controllers
{
   public class FeatureController : Controller
   {
       public ActionResult Index()
       {
           var listOfFeatures = new List<Feature>();

           listOfFeatures.Add(new Feature() { Name = "Pure MVC mode", Version = 5.1 });
           listOfFeatures.Add(new Feature() { Name = "Classic MVC mode", Version = 5.1 });
           listOfFeatures.Add(new Feature() { Name = "Hybrid MVC mode", Version = 5.1 });

           return View(listOfFeatures);
       }
    }
}
Want to learn more?
Enhance your Sitefinity skills by enrolling in free training sessions. Become Sitefinity certified through Progress Education Community to strengthen your professional credentials.
New to Sitefinity?