Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public ReadOnly Property DropDownSelectedValue() As String
Get
Return cboColleges.SelectedValue
End Get
End Property
Protected Sub cboColleges_SelectedIndexChanged(sender As Object, e As System.EventArgs) Handles cboColleges.SelectedIndexChanged
Response.Write(DropDownSelectedValue)
End Sub
Protected Sub cboColleges_SelectedIndexChanged(sender As Object, e As System.EventArgs) Handles cboColleges.SelectedIndexChanged
Page.Response.Redirect(colleges.aspx)
End Sub
colleges is not declared. it may be inaccessible due to its protection level
Page.Response.Redirect(colleges.aspx)