17/03/2009, 13:57
|
| | | Fecha de Ingreso: enero-2007 Ubicación: Durango, Méx.
Mensajes: 175
Antigüedad: 18 años Puntos: 1 | |
Respuesta: Agregar el campo de dato y de valor por código a un DropDownList
Código:
ListItem liNuevoItem = new ListItem(string text, string value);
DDL.Items.Add(liNuevoItem); // DDL.Items.Add( new ListItem(string text, string value) );
|