Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/09/2007, 15:02
daniel00
 
Fecha de Ingreso: noviembre-2006
Ubicación: México
Mensajes: 866
Antigüedad: 18 años, 2 meses
Puntos: 8
Re: DropDownList en EditItemTemplate

Que tal Zyanya.

Al evento myGrid_ItemCommand, cuando sea el caso de Editar, puedes hacer algo como lo siguiente:
Código:
...
            Select Case e.CommandName
                Case "Edit"
                      Dim myDDL As DropDownList = CType(e.Item.FindControl("myDDL"), DropDownList )


                     myDDL.Items.Clear()
                     myDDL.DataSource = myDataSource
                     myDDL.DataValueField = "ID"
                     myDDL.DataTextField = "Value"
                     myDDL.DataBind()

...
Estoy suponiendo que en el HTML hay un control myDDL, dentro del grid mygrid.

Saludos!