
22/03/2005, 13:48
|
 | | | Fecha de Ingreso: diciembre-2004
Mensajes: 365
Antigüedad: 20 años, 3 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 |