@Html.DropDownList("CountryID", String.Empty)
@Html.ValidationMessageFor(model => model.CountryID)
Controller code
at the time on showing data in drop down list
ViewBag.CountryID = new SelectList(db.Countries, "CountryID", "Name");
at the time of showing data on saving time
ViewBag.CountryID = new SelectList(db.Countries, "CountryID", "Name", state.CountryID);
plz send your comment - how many types we have bind data in drop downlist
Replies
Know the answer? Post it — somebody with the same question will find it here.