Simple example of how to create a drop down list in ASP.NET MVC using DropDownListFor.
You can do it like this all inlined in your *.cshtml file like so:
List<SelectListItem> listItems = new List<SelectListItem>();listItems.Add(new SelectListItem
{
Text = "MALE",
Value = "1"
}); listItems.Add(new SelectListItem
{
Text = "Female",
Value = "2",
});
}
@Html.LabelFor(model => model.Gender, new { Class = "custom-name-field" })
@Html.DropDownListFor(model => model. Gender, listItems, "-- Select Gender --", new { Class = "mytextstyle" })
@Html.ValidationMessageFor(model => model. Gender)
model => model.Gender expression is used to generate the value and Gender type on the select.
Post your comments / questions
Recent Article
- How to Encode & Decode using Base64 in Python?
- Unspecified error-The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Cocoa support.
- How to generate a Captcha verification code image with Python?
- How to show an image using path python PIL?
- How to remove Background from the images using Python?
- Python generate QR code image
- Insert excel file data into MySQL database in Python
- ImportError: Missing optional dependency 'xlrd' | How tot Convert xls to xlsx | Python
Related Article