Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/12/2010, 08:08
derebus
 
Fecha de Ingreso: diciembre-2010
Mensajes: 28
Antigüedad: 13 años, 5 meses
Puntos: 2
Respuesta: Dudas con DropDownList...

Tuve ese problema alguna vez y lo solucione con el AppendDataBoundItems="true". Te pongo un ejemplo y la web de ayuda.

<asp:DropDownList ID="dplPersonas" runat="server" AppendDataBoundItems="true" CssClass="caja" Width="145px">
<asp:ListItem Value="0">--Seleccionar Nombre--</asp:ListItem>
</asp:DropDownList>

http://geeks.ms/blogs/lruiz/archive/2007/03/05/asp-net-2-0-la-propiedad-appenddatabounditems.aspx

Espero te ayude.
Saludos