0
votes
2answers
85 views

Get value from Html.DropDownListFor without using Ajax or Jquery?

I am trying to pass a value from a dropdownlist to a controller method as a parameter. The following code DOES NOT WORK: @using (Html.BeginForm()) { <fieldset> ...
0
votes
1answer
47 views

Sending parameter from Html.DropDownList not completing redirect action?

I am struggling to get the value out of this: @Html.DropDownListFor(m => m.ClientId, new SelectList(Model.Clients, "ClientId", "Name")) @Html.ValidationMessageFor(model => ...
0
votes
1answer
61 views

Create simple Html.DropDownList or DropDownListFor

I am trying to include a list of Clients in a drop down box. I am including this list in a form (the Html.BeginForm()) so that I can pass the selected value to my POST controller. I think I am missing ...
1
vote
1answer
82 views

What is the best way to create dropdownlists in MVC 4?

I want to know,What is a best way to create dropdownlists in MVC 4? With ViewBag or another approach?
0
votes
2answers
56 views

create many DropDownListFor in foreach-loop

I want to create DropDownLists dynamically out of a List, which supplies the SelectList and a field where to save the selection. public class ViewModel { public List<Material_Select> ...
0
votes
1answer
212 views

Generate a DropDownList from a Model in asp.net MVC3

I have a model like [Required] public string Username { get; set; } [Required] public string Password { get; set; } public IEnumerable<Connection> Connections { get; set; } ...
0
votes
2answers
250 views

ASP.net MVC3 Select Foreign Key in Veiw using DropDownList

First off, sorry for brinning up, yet again, a topic that has been coverd many times before on this site - As much as I try, I just can't get my code to work. I have the following model classes: ...
0
votes
2answers
460 views

Bind a simple integer array to a DropDownList in MVC3

My ViewModel is as follows: public class ClassificationCalculatorIndexViewModel { public bool PlacementYear { get; set; } public int[] Credit { get; set; } // List of Integers public int ...
1
vote
1answer
732 views

Drop down list value returns to ---select— after page refresh

So in my application the user will select a name from the drop down list, click 'view' and the corresponding values will display on page. A hyperlink is then used to sort the list in ascending order. ...
1
vote
1answer
206 views

MVC: Dynamically populate html select

I have a field that is generated for each row in the view as follows: @Html.DropDownListFor(m => m.MenuParentKey, ViewBag.MenuKeys as SelectList) But I want the drop-down to be populated ...
0
votes
1answer
163 views

DropDownListFor not working with nested list

My DropDownListFor not bind selected item. This is correct model: public class DeliveryOrderModel { public BoxInfo Boxes { get; set; } public class BoxInfo { public long? ...
1
vote
1answer
639 views

Dropdown list in Webgrid

Can somebody help me how can I put a dropdownlist in my webgrid column. I need to bind my dropdown list to a list from Model. And need to select an item from the list for every corresonding record in ...
0
votes
0answers
137 views

MVC trying to populate my dropdownlist from my repository using ADO.net only

I need help on writing this. I am very new to MVC(2 weeks). I cant use EF, just plain ADO.net. I just need it to return a SelectList so I could populate a dropdownlist. public ...
1
vote
1answer
3k views

mvc c# html.dropdownlist and viewbag

So I have the following (pseudo code): string selectedvalud = "C"; List<SelectListItem> list= new List<SelectListItem>(); foreach(var item in mymodelinstance.Codes){ list.Add(new ...
23
votes
3answers
16k views

ASP.NET MVC dropdown with a default empty option

Is there a way to include a default empty option (or with text) if there is no selected value for a dropdownlist?