How do you open a window on the same page?
(response.redirect will go to the other page.)
Thanks.
Protected Sub DropDownList1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles DropDownList1.SelectedIndexChanged
Select Case DropDownList1.Text
Case "First Meeting Room"
Response.Redirect("http://localhost:52952/RoomSetting/FirstMeetingRoom.aspx", False)
Case "Second Meeting Room"
Response.Redirect("http://localhost:52952/RoomSetting/MainMenu.aspx", False)
End Select
End Sub