Compiler Error Message: BC30367: Class 'System.Data.DataSet' cannot be indexed because it has no default property.
Código:
Sub DropDownList1_SelectedIndexChanged(sender As Object, e As EventArgs) DataList1.DataSource = listado(DropDownList1.Items(DropDownList1.SelectedIndex).Text) DataList1.DataBind() End Sub
La linea que reclama es la de
Código:
DataList1.DataSource = listado(DropDownList1.Items(DropDownList1.SelectedIndex).Text)