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

Lesson 13 - E-shop in ASP.NET Core MVC - Product detail

In the previous lesson, E-shop in ASP.NET Core MVC - Finishing product index, we created a product list for our e-shop. In today's ASP.NET Core tutorial, we're going to add a product detail as well. It's going to look like this:

A product detail in an ASP.NET Core MVC e-shop

First, we have to deal with several things from the last time.

Finishing features from the last lesson

Deleting products

Last time, we added a link to remove the product to the admin view (<a href="/product/delete/@Model.ProductId"...). Let's add a Delete() action to the ProductController:

[Authorize(Roles = "Admin")]
public IActionResult Delete(int id)
{
    var product = productManager.FindProductById(id);
    productManager.CleanProduct(product, true);
    this.AddFlashMessage(new FlashMessage("The product was successfully deleted.", FlashMessageType.Success));
    return RedirectToAction("Index");
}

Note: We already have the CleanProduct() method, but it's private. In order for the code above to work, we need to set it public and specify its definition in the IProductManager.

Increasing items in stock

We can implement this functionality completely right now. We directed


 

...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 tutorial, we'll finish the basic functionality of the e-shop in ASP.NET Core MVC which is displaying a product detail. We'll also discuss routing.

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