tnhbutrier
New Member
I need help to extract what i select here :\[code\]<% var equipo = Html.DropDownListFor(model => model.campeonato.equipo, new SelectList(Model.campeonato.equipo, "idEquipo", "nombre", Model.campeonato.equipo.First().idEquipo), new { @required = "required", @class = "infofield" });%><%:Html.DropDownListFor(model => model.idJugadora, new SelectList(Model.campeonato.equipo.Where(d=>d.idEquipo.Equals(equipo)).ToList(), "idJugadora", "nombre", Model.campeonato.equipo.First().jugadora), new { @required = "required", @class = "infofield" })%> \[/code\]If i do it on that way, it doesn't appear the dropdownlist in the View :S