Get up to 80 % extra points for free! More info:

Lesson 12 - E-shop in ASP.NET Core MVC - Finishing product index

In the previous lesson, E-shop in ASP.NET Core MVC - Product index, we prepared both the controller and the viewmodel. In today's ASP.NET Core tutorial, we're going to create the view and finish the product listing. This is how the final view should look like:

Product listing in ASP.NET Core MVC e-shop

Product listing

Model, namespace, and SelectList

Let's create the view in the Views\Product\ folder and name it Index.cshtml. At the beginning of the view, we have to specify the model data type, which in our case is the ProductIndexViewModel class. Next, we'll prepare the PagedList.Mvc namespace and the appropriate cascading styles. To do this, we'll create one more file for our own cascading styles (a file named ProductIndex.css in the css\ folder of root):

@model EShop.Models.ProductViewModels.ProductIndexViewModel
@using X.PagedList.Mvc.Core;
<link href="~/css/PagedList.css" rel="stylesheet" type="text/css" />
<link href="~/css/ProductIndex.css" rel="stylesheet" />
@{
    ViewData["Title"] = "Products";
}

Form

In the form header, we'll specify the controller, action, and access method for sending data. We'll include two hidden fields for the


 

...End of the preview...
Continue further

You will gain knowledge worth hundreds of thousands for a few crowns

You've come here and that's great! We believe that the first lessons showed you something new and useful
Do you want to continue the course? Go to the premium section.

Buy this course

Buy all currently available lessons with exercise submitting and other features for just $89.10
Current account balance $0
By buying this package, you'll have access to all 34 articles (34 lessons) in this course.

Before buying this article, you have to buy the previous one

This article is licensed: Premium no-reselling II, by buying this article, you agree with the terms of use.

Commercial article (licence no-reselling)

Commercial article (licence no-reselling)

This article is based on many years of experience in the IT field, and describes how to develop a professional commercial product or parts, that can be directly used to generate profit or to get as a gate into the industry.

This knowledge is only for the members of our community who are working their way up to become IT professionals. Therefore, this knowledge is only available in exchange for credits. You can use the source code from this article for one commercial project. However, you will not be able to resell it. Simply put, you can't buy our article once and then sell our code multiple times. If you need to use this code a bit more extensively, we are ready to discuss Commercial licence options with you. You can find more info on this in the following article Licence.

Are you ready to become a professional? All you have to do is click here!.

Article description

Requested article covers this content:

In this ASP.NET Core tutorial, we'll create a view with a pagination using the PagedList.MVC package, partial views, and a helper.

You gain credits by supporting our network. This is done by sending a helpful amount of money to support the site, or by creating content for the network.

Article has been written for you by Martin Petrovaj
Avatar
Activities