Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/02/2005, 17:48
Avatar de splinter
splinter
 
Fecha de Ingreso: junio-2004
Ubicación: Misantla,Ver.Mexico
Mensajes: 181
Antigüedad: 20 años, 7 meses
Puntos: 0
Hola,
en el codebehind podrias hacerlo asi (el grid esta editable y cuenta con un boton de update)

Private Sub GridCA_UpdateCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs ) Handles GridCA.UpdateCommand
'*aqui obtienes la seleccion*
dim Status as string
Status = CType(e.Item.FindControl("LstStatusE"),DropDownLis t).SelectedIndex.ToString

End Sub