Learn C1 MVC Client

This application demonstrates main features of C1 MVC controls with the help of a series of samples.

Browse the topics in the left pane to see various features in action and learn by browsing the code and markup. After navigating through a few samples, you should be able to understand MVC client basics and eventually become an expert as you dig in further.

For more details on a specific control or property, please refer the online documentation of MVC controls.

If you can't find something you are looking for, or have feedback regarding MVC controls or this tutorial, please write to us and we will try our best to meet your requirements.

using System.Web.Mvc;

namespace LearnMvcClient.Controllers
{
    public partial class C1MvcController : Controller
    {
        // GET: Index
        public ActionResult Index()
        {
            return View();
        }
    }
}
<h1>
    @Html.Raw(Resources.C1Mvc.Index_Title)
</h1>
@Html.Raw(@Resources.C1Mvc.Index_Description)