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

Lesson 33 - E-shop in ASP.NET Core MVC - Editing Orders 2 - Customer

The lesson is being updated for .NET Core 3.1. The fully-functional project is attached to the Lesson 31.

In the previous lesson, E-shop in ASP.NET Core MVC - Editing Orders, we started editing the order and implemented a part of the payment details editing. Today, we're going to continue with ASP.NET Core tutorial by editing customer details. We'll complete the project in the next lesson.

An e-shop order form in ASP.NET Core

Updating Customer Details

We'll use our already completed _PersonPartial view to update the customer details. We'll render the entire form in a dialog box with the help of jQuery UI dialog. We'll display the changes we made using AJAX again.

Editing the ViewModel

In order to render the _PersonPartial view, we also need to pass BasePersonViewModel to the page as part of the model. So let's add it to our OrderEditViewModel:

public class OrderEditViewModel : InvoiceViewModel
{
    public BasePersonViewModel PersonVM { get; set; }
}

Controller

In the controller, in the Edit() action, we also need to initialize the newly added PersonVM property. Since we basically use the same code in the Edit() action in AccountController for filling the PersonEditViewModel instance, I recommend moderate refactoring and moving the common code, for example, to a new BasePersonViewModel constructor, and use it in 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:

We'll program order editing by e-shop administrators in C# .NET. We'll display the form in a dialog box and update data in background using AJAX.

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