Risposte:
Vedi questo articolo MSDN e un esempio di utilizzo qui su StackTranslate.it .
Supponiamo che tu abbia la seguente classe Linq / POCO:
public class Color
{
public int ColorId { get; set; }
public string Name { get; set; }
}
E diciamo che hai il seguente modello:
public class PageModel
{
public int MyColorId { get; set; }
}
E, infine, diciamo che hai il seguente elenco di colori. Potrebbero provenire da una query Linq, da un elenco statico, ecc .:
public static IEnumerable<Color> Colors = new List<Color> {
new Color {
ColorId = 1,
Name = "Red"
},
new Color {
ColorId = 2,
Name = "Blue"
}
};
A tuo avviso, puoi creare un elenco a discesa in questo modo:
<%= Html.DropDownListFor(n => n.MyColorId,
new SelectList(Colors, "ColorId", "Name")) %>
<%:
Html.DropDownListFor(
model => model.Color,
new SelectList(
new List<Object>{
new { value = 0 , text = "Red" },
new { value = 1 , text = "Blue" },
new { value = 2 , text = "Green"}
},
"value",
"text",
Model.Color
)
)
%>
oppure non puoi scrivere classi, metti qualcosa del genere direttamente alla vista.
Evita molta diteggiatura grassa iniziando con un dizionario nel modello
namespace EzPL8.Models
{
public class MyEggs
{
public Dictionary<int, string> Egg { get; set; }
public MyEggs()
{
Egg = new Dictionary<int, string>()
{
{ 0, "No Preference"},
{ 1, "I hate eggs"},
{ 2, "Over Easy"},
{ 3, "Sunny Side Up"},
{ 4, "Scrambled"},
{ 5, "Hard Boiled"},
{ 6, "Eggs Benedict"}
};
}
}
Nella vista convertilo in un elenco per la visualizzazione
@Html.DropDownListFor(m => m.Egg.Keys,
new SelectList(
Model.Egg,
"Key",
"Value"))
Ciao, ecco come l'ho fatto in un progetto:
@Html.DropDownListFor(model => model.MyOption,
new List<SelectListItem> {
new SelectListItem { Value = "0" , Text = "Option A" },
new SelectListItem { Value = "1" , Text = "Option B" },
new SelectListItem { Value = "2" , Text = "Option C" }
},
new { @class="myselect"})
Spero che aiuti qualcuno. Grazie
O se proviene da un contesto di database che puoi usare
@Html.DropDownListFor(model => model.MyOption, db.MyOptions.Select(x => new SelectListItem { Text = x.Name, Value = x.Id.ToString() }))
Con "Seleziona un articolo"
@Html.DropDownListFor(model => model.ContentManagement_Send_Section,
new List<SelectListItem> { new SelectListItem { Value = "0", Text = "Plese Select one Item" } }
.Concat(db.NameOfPaperSections.Select(x => new SelectListItem { Text = x.NameOfPaperSection, Value = x.PaperSectionID.ToString() })),
new { @class = "myselect" })
Derivato dai codici: Master Programmer && Joel Wahlund ;
Re Reference: https://stackoverflow.com/a/1528193/1395101 JaredPar ;
Grazie Master Programmer && Joel Wahlund && JaredPar ;
Buona fortuna amici
@using (Html.BeginForm()) {
<p>Do you like pizza?
@Html.DropDownListFor(x => x.likesPizza, new[] {
new SelectListItem() {Text = "Yes", Value = bool.TrueString},
new SelectListItem() {Text = "No", Value = bool.FalseString}
}, "Choose an option")
</p>
<input type = "submit" value = "Submit my answer" />
}
Penso che questa risposta sia simile a quella di Berat, in quanto hai messo tutto il codice per il tuo DropDownList direttamente nella vista. Ma penso che questo sia un modo efficace per creare un elenco a discesa ay / n (booleano), quindi volevo condividerlo.
Alcune note per i principianti:
Spero che questo aiuti qualcuno,