then the dropdown brings the following values
VALOR1
VALOR2
VALOR3
I want the combo to bring a default value to tell me to choose your example option:
-- SELECCIONE --
VALOR1
VALOR2
VALOR3
because it always brings me by default VALOR1
Controller
ViewBag.VBPais = new SelectList(db.Pais, "IdPais", "Nombre");
View
@Html.DropDownList("VBPais")