The key is the "target" attribute of the form element on that page. Set target="_blank" and post backs will open up in a new window; from there, you can redirect to wherever you need.For example:<form id="Form1" method="post" runat="server" target="_blank"> <asp:TextBox id="TextBox1" runat="server/> <asp:Button id="Button1" runat="server" Text="Search Google"/></form>
and in the code-behind: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Response.Redirect("http://www.google.com/search?q=" & Server.UrlEncode(TextBox1.Text)) End Sub