Loading a new page

a02227

Member
Joined
Nov 30, 2004
Messages
15
Location
Ireland
Programming Experience
Beginner
I want to load another page in my web application does anyone know how i would do this?
 
You mean you want to add another webform? - solutionexplorer, right click, add, add web form.

Or do you mean you want to redirect to another page? - response.redirect("URL")

Or something else?

TPM
 
Ok so you want : response.redirect("URL") then (where URL is the URL of the page to redirect to)
EG. response.redirect("www.vbdotnetforums.com")
 
Back
Top