I have the following code, and I need it to have a default value. `
@Html.DropDownListFor(m =\> m.Articulo.CategoriaId, Model.ListaCategorias,
"Seleccione una categoría", new { @class = "form-control" })
` is simple no?
My intention is to achieve a default value, but I have this dropdown list and I don't know much about C#, if I can at least achieve a default value, I'll be fine.