Hi,
I have a page razor with many drop down, the page takes a long time to render, due to certain dropdown with several items that are loaded from db.
Here the code of a dd:
@Html.LabelFor(model => model.CODICE_STATO_NASCTITA, "Stato di nascita")
@Html.DropDownList("CODICE_STATO_NASCTITA", new SelectList(new HotelEntities().NAZIONI.ToList().Select(type => new { type.CODICE, type.DESCRIZIONE }), "CODICE", "DESCRIZIONE"), ":Seleziona:", new { @class = "chosen-select comboModerator" })
@Html.ValidationMessageFor(model => model.CODICE_STATO_NASCTITA)
Thanks
Replies
Know the answer? Post it — somebody with the same question will find it here.