Response ASP.Net

<%@ Page Language="VB" %>

   Sub Page_Load(Source As Object, E as EventArgs)
     If Not IsPostBack Then
       MyButton.Text = "OK"
       MyDropDownList.Items.Add("http://www.rntsoft.com")
       MyDropDownList.Items.Add("http://www.rntsoft.com")
       MyDropDownList.Items.Add("http://www.rntsoft.com")
     End If
   End Sub
   Public Sub Click (ByVal sender As Object, ByVal e As System.EventArgs)
     Response.Redirect(MyDropDownList.SelectedItem.Text)
   End Sub