i want to disable DropDownList on edit mode in asp.net mvc razor
i have this code:
@Html.DropDownListFor(m => m.FK_TypeID, new List<SelectListItem> { new SelectListItem { Text = "Select", Value = "", Selected = true } }, new { @class = "form - control" })
how to achive it