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:

Want to learn more?

Sign up for our free beginner training. Boost your credentials through advanced courses and certification.
Register for Sitefinity training and certification.

Was this article helpful?

Next article

Create the view