Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

asp.net vnext Tag helpers select option not working

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.

like image 688
Karthick Avatar asked Sep 13 '25 11:09

Karthick


1 Answers

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.

like image 115
Karthick Avatar answered Sep 15 '25 19:09

Karthick