Pl help me to sort out the following issue..
In the View,
<select asp-for="Frequency" [email protected] class="form-control" />
and in Controller,
SelectListItem[] items = { new SelectListItem() { Text = "item 1", Value= "Nrk" },
new SelectListItem() { Text = "item 2", Value= "Nrk 2" }
};
ViewBag.Freqs = items;
return View();
But I am not getting the list in the drop down box.
After two days, I found the problem.. the following is worked
<select asp-for="Frequency" [email protected] class="form-control">
</select>
Instead of
<select asp-for="Frequency" [email protected] class="form-control" />
@Matt DeKrey, thanks for pointing the tag issue... I will edit my post as u mentioned.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With