A
Amy Snyder
I was expecting the code below to write the selected item in the list
box to the browser but nothing happens.
What I am trying to do in the grand scheme of things is change the
pagesize of a datagrid after selecting from a list box. I figured I
could do this with the SelectedIndexChanged event. Is that possible?
Private Sub DropDownList1_SelectedIndexChanged(ByVal sender As
System.Object, ByVal e As System.EventArgs) Handles
DropDownList1.SelectedIndexChanged
Response.Write(DropDownList1.SelectedItem)
End Sub
box to the browser but nothing happens.
What I am trying to do in the grand scheme of things is change the
pagesize of a datagrid after selecting from a list box. I figured I
could do this with the SelectedIndexChanged event. Is that possible?
Private Sub DropDownList1_SelectedIndexChanged(ByVal sender As
System.Object, ByVal e As System.EventArgs) Handles
DropDownList1.SelectedIndexChanged
Response.Write(DropDownList1.SelectedItem)
End Sub