
29/08/2008, 08:32
|
| | Fecha de Ingreso: agosto-2008
Mensajes: 1
Antigüedad: 16 años, 7 meses Puntos: 0 | |
DataTextField 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. |