@edsonferraz1

Great tutorial, congratulations!!

@bassethoundgang2800

This was a great lesson!!! This is exactly what I needed to learn. I did have a hard time following you on the AJAX part (around 18 minutes in ). I struggled to see the bottom of the code where all the closing parenthesis goes. I was able to figure it out on my own. This worked for me: 

 NOTE I MODIFIED MY CODE YOU USE Countryid instead of CountryCode!!!!

@section Scripts { 
    @{await Html.RenderPartialAsync("_ValidationScriptsPartial");}
    <script type="text/javascript">
        $(document).ready(function() {
            $('#lstCountry').change(function() {
                var selectedCountry = $('#lstCountry').val();          
                var citySelect = $('#lstCity');
                citySelect.empty();
                if (selectedCountry != null && selectedCountry != '') {                   
                    $.getJSON('@Url.Action("GetCities")', { Countryid: selectedCountry }, function(cities) {
                        if (cities != null && !jQuery.isEmptyObject(cities)) {
                                 citySelect.append($('<option/>', {value: null, text: "Selected City----"}));                                 
                                  $.each(cities, function(index, city) {
                                      citySelect.append($('<option/>', { value: city.value,text: city.text}));                                
                                   });
                        }; ///goes with if (cities)
                    });///goes with .getJSON
                }; //goes with if (selectedCountry)
            });// goes with changed function
        });//goes with if document ready
    </script>
}

@moniruzzamanmonir1555

Thank you very much sir, for creating this kind of amazing Tutorial. finally found exact tutorial that is am looking for.

@prabhakarant542

Amazing the video explaining need more videos 👌👌👌👌

@kakmca

Thank you very much for your great video. Feeling relaxed with this solution. :-)

@attilaguba856

Thanks very much! Great one!

@trongnguyen-di5bz

thank you very much

@michaelacevedo1525

Hi? Please is posibble if you have the Repository or code? Have error and follow every steps :(

@rahulm8216

Great Video And Explanation!👏

@ducdo7470

Thank a lot

@petegarner1059

Really good tutorial and video. Have entered the code but cannot get the cities to display. Would welcome some suggestions as to where to check please Aniz. Thank you

@ehsanehr970

Thank you very much for this great tutorial. you did great. but I wish you could put source  code as well to make this perfect.

@michaelacevedo1525

Hi, please i want know if you have the repository for this tutorial thanks

@farrukhazadpak5149

Excellent , Can we get code of this project ?

@nadyarahmalestanti7202

thankyo very helpful, but can you give a tutorial to edit the column sir

@bl7937

Awesome video, thank you very much!

How can someone who is new to JavaScript/jQuery learn how to perform what you used with this tutorial along with your other tutorials using JS and jQuery with .Net Core.

@pratikparmar346

This video very useful but i need without entity framework. ..pls help me

@AjinkyaTambade

can i get code of this

@forhadarnab1400

Please show edit action