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:

Increase your Sitefinity skills by signing up for our free trainings. Get Sitefinity-certified at Progress Education Community to boost your credentials.

Web Security for Sitefinity Administrators

The free standalone Web Security lesson teaches administrators how to protect your websites and Sitefinity instance from external threats. Learn to configure HTTPS, SSL, allow lists for trusted sites, and cookie security, among others.

Foundations of Sitefinity ASP.NET Core Development

The free on-demand video course teaches developers how to use Sitefinity .NET Core and leverage its decoupled architecture and new way of coding against the platform.

Was this article helpful?

Next article

Create the view