so the code below gives me a DropDown box with a list of names from Drivers, however it is only firstnames and I have surnames as well, how would I do this. The code I have is...
@Html.DropDownListFor(model => model.DriverId, new SelectList(Model.Drivers, "Id", "FirstName", Model.DriverId), "<Select Driver>")
@Html.ValidationMessageFor(model => model.DriverId)
This selects the FirstName, so say "John", I want it to be "John Smith", so it includes the Surname as well. Can anyone help?
Thanks