En un control DropDownList de . Net, quiero que se carguen dos origenes de datos, actualmente se carga un sólo origen:
DropDownList1.DataSource = dto;
DropDownList1.DataValueField = "Cedula";
DropDownList1.DataTextField = "Nombre";
pero quiero que en el DropDownList se pinten dos origenes.
Probé con:
DropDownList1.DataSource = dto;
DropDownList1.DataValueField = "Cedula";
DropDownList1.DataTextField = "Nombre" & "Apellido";
pero no funciona.