Ver Mensaje Individual
  #12 (permalink)  
Antiguo 22/03/2005, 13:48
Avatar de Sayra
Sayra
 
Fecha de Ingreso: diciembre-2004
Mensajes: 365
Antigüedad: 19 años, 6 meses
Puntos: 1
pues tuviste la precausion cambiar el nombre dropdownlist1 al nombre de tu drop?

de manera que te quede asi

If Not Page.IsPostBack Then
DropDownList4.DataTextField = "equipo"
DropDownList4.DataSource = MyQueryMethod4()
DropDownList4.DataBind()

DropDownList4.Items.Insert(0, "Seleccione un item")
DropDownList4.SelectedIndex = 0

End If
End Sub