Tagged Questions

1
vote
1answer
189 views

Asp.net mvc select list

I need to create a select list, preserving the state, which is not part of the model passed to the view. I suppose I should be using a ViewBag to pass a List to the View ? Any advise on implementation ...
1
vote
1answer
733 views

Binding a simple sort dropdown to a list in MVC

Im trying to bind a dropdownlist in ASP.NET MVC to a class. Luckily for me this will be a number between 1 and 10, however I'm not getting the output in my HTML that I would expect. I've set both the ...
0
votes
1answer
73 views

ASP.NET : generate ListBoxItems from values in database

I want to populate a listbox, so I have to define an array of ListBoxItem. The data is stored in a database. This is my original method: public IEnumerable<String> ...
0
votes
3answers
324 views

Easiest way to specify the selected option to a dropdown list in ASP.NET MVC

I have a list of options (IEnumerable< SelectListItem >) in my model that I want to use in multiple dropdowns in my view. But each of these dropdowns could have a different selected option. Is ...