Ver Mensaje Individual
  #13 (permalink)  
Antiguo 14/12/2012, 02:13
thanos
 
Fecha de Ingreso: octubre-2012
Ubicación: España
Mensajes: 30
Antigüedad: 12 años, 2 meses
Puntos: 2
Respuesta: obtener valor del dropdownlist

Prueba a poner el autopostback a false y las sentencias donde cargas el dropdownlist las metes en un if tal que así:

Código ASP:
Ver original
  1. if (IsPostBack==false)
  2. {
  3. ComboBoxDepartamentoLG.DataSource = ds
  4. ComboBoxDepartamentoLG.DataValueField = "id_dept"
  5. ComboBoxDepartamentoLG.DataTextField = "nombre_dept"
  6. ComboBoxDepartamentoLG.DataBind()
  7. }

A ver si hay suerte. Un saludo