Cascading Dropdown With Jquery
Microsoft Net Framework

1)First Create tables 

2)In controllr write this code

 public class AddressController : Controller
    {
        ContactInfoEntities db = new ContactInfoEntities();
    
        public ActionResult Index()
        {
            List<Country> CountryList = db.Countries.ToList();
            ViewBag.CountryList = new SelectList(CountryList, "CountryID", "Name");
            return View();
        }

        public JsonResult GetStateList(int CountryId)
        {
            db.Configuration.ProxyCreationEnabled = false;
            List<City> StateList = db.Cities.Where(x => x.CountryID == CountryId).ToList();
            return Json(StateList, JsonRequestBehavior.AllowGet);

        }

        
    }

 

3)After this write this code in view

@model CascadingJqueryPractice.Models.Address

<br /><br />
<div class="container">
    <div class="form-group">
        @if (ViewBag.CountryList != null)
        {
            @Html.DropDownListFor(model => model.CountryID, ViewBag.CountryList as SelectList, "--Select Country--", new { @class = "form-control" })
        }
    </div>
    <div class="form-group">
        @Html.DropDownListFor(model => model.CityID, new SelectList(" "), "--Select State--", new { @class = "form-control" })
    </div>
</div>
<script src="~/Scripts/jquery-3.3.1.min.js"></script>
<script>
    $(document).ready(function () {
        $("#CountryID").change(function () {
            var CountryID = $(this).val();
            $.get("/Address/GetStateList", { CountryId: CountryID }, function (data) {
                $("#CityID").empty();
                var item;
                $.each(data, function (i, item) {
                    $('#CityID').append($('<option>', {
                        value: item.CityID,
                        text: item.Name
                    }));
                });
            });
        })
    });
</script>

Share This with your friend by choosing any social account


Upcoming Articles
You may also read following recent Post
Copyright Future Minutes © 2015- 2024 All Rights Reserved.   Terms of Service  |   Privacy Policy |  Contact US|  Pages|  Whats new?
Update on: Dec 20 2023 05:10 PM
03
07

New Messages

George Floyd
  • Edit Post Edit This Post within a Hour
  • Hide Chat Hide This Post
  • Delete Chat If inappropriate Post By Mistake
  • Report Inappropriate Chat
  • 4.5kb
  • Hi James! Please remember to buy the food for tomorrow! I’m gonna be handling the gifts and Jake’s gonna get the drinks
  • Hi James! Please remember to buy the food for tomorrow! I’m gonna be handling the gifts and Jake’s gonna get the drinks
  • Hi James! Please remember to buy the food for tomorrow! I’m gonna be handling the gifts and Jake’s gonna get the drinks