-1
votes
0answers
68 views

How can I make a textbox appear if a specific dropdown list item is selected in MVC 4?

I've got a form on my MVC 4 application. There are two dropdown lists on the form, and if "other" is the selected item, I want a text box to appear next to the dropdown list so that the user can type ...
0
votes
2answers
69 views

How simplify my request code?

I use this part of code to get informations from my database, using Entity Framework, and add all of it in a IEnumerable property for, at the end, a DropDownListFor display. I need to use that kind a ...
0
votes
2answers
126 views

Code First conventions confusion

Models: public class Status { public int Id { get; set; } } public class Podcast { public int Id { get; set; } public virtual Status Status { get; set; } } The Podcast table has the ...
1
vote
2answers
368 views

DropDownlistFor Creating New Entity with MVC3

I'm developing a small app in order to better understand how MVC3 anda Razor works. I'm using MVC3, all code was generated automatically (dbContext via T4, Controller via Add Controller, Databese from ...
0
votes
1answer
221 views

Why does the DropDownListFor helper fail after a validation error?

Been at this for too long! any advice on the following problem... code added: Model: AccountModels.cs [Required] [Display(Name = "Select role: ")] public String Role { get; set; } Controller: ...
44
votes
3answers
107k views

Create a Dropdown List for MVC3 using Entity Framework (.edmx Model) & Razor Views && Insert A Database Record to Multiple Tables

After reading 100's of articles on here about how to create a DropDown List in MVC 3 with Razor Views, I could not find one that fit my case. So after Hours and Hours of searching for the answer I ...
2
votes
1answer
549 views

Dropdown list with limited range of choices in Asp.Net MVC?

I want to bind a field in a View to a property in a ViewModel. The object is "Program" and has the properties "Name" and "Level". So the user should be able to set the name of a program and the level ...
4
votes
2answers
1k views

Saving Dropdown list selection with Entity Framework in ASP.NET MVC solution

I'm looking for advice on a decent pattern for dropdown list selection and persistence of the selection with POCO EF please. I have a list of IEnumerable<Country> in my view model where Country ...