How to Redirect to another page

I have a simple WebForm on Visual Studio 2005 Web Developer.
I have 2 textboxes with integer values in them
How can I do an instruction placed on the Page_load Sub that opens a new page or redirects to a new page automatically when value from TextBox1 = TexBox2 ??
THANX
[297 byte] By [simonevaristo] at [2007-11-19 19:44:24]
# 1 Re: How to Redirect to another page
If page.ispostback then

if textbox1.text = textbox2.text then

response.redirect("www.crgitsolutions.com")
'or server.transfer()

end if

end if
Craig Gemmill at 2007-11-10 3:14:23 >