iTech College - Internet Technology, Online Education, E-Learning, Technician Training, Tech Tutorials, Distance Education, Virtual Learning ASP Course: Redirect - www.itechcollege.com ASP Course: Redirect - www.itechcollege.com
Online Degrees Scholarships & Fellowships Internships Student Financial Aid Study Abroad Itech Bookstore
Free Courses
HTML
JavaScript
CSS
ASP
PHP
JSP
ASP.NET
SQL
AJAX
FTP
XML
Career Center
Job List
Web Jobs
Student Jobs
Computer Jobs
Engineer Jobs
Developer Jobs
Job Search
Resume Writing
Job Interview
Salary Info


itech > courses > ASP > Redirect

Redirect

We can redirect users from one page to another. The basic syntax is:

response.redirect "<another page name>"

For example:

response.redirect "john.asp"

Let's imagine you have three clients: John, Mike and Joe. You want each client going to his own page after login. You may use Redirect.

We need five pages. Let's create three pages: john.asp, mike.asp and joe.asp for the three clients. Keep the first.asp as the same as the above. Modify second.asp:

<%
u=request("user")
p=request("pass")
if ((u="John") and (p="John123")) then
response.redirect "john.asp"
elseif ((u="Mike") and (p="Mike456")) then
response.redirect "mike.asp"
elseif ((u="Joe") and (p="Joe789")) then
response.redirect "joe.asp"
else response.write "<html><body>Sorry, invalid login</body></html>"
end if
%>

Open first.asp on web browser, enter user name and password. If the user name and password match what we defined in second.asp, then an user's page open.Otherwise, display a message: "Sorry, invalid login".

  Back to Index Page
Next Page >>   Introduction
ASP Tags and Include File
Response and Request
If Then
For Loop
Redirect
Sessiont
Use Database
 

ASP Books
ASP Jobs



Bookmark:  del.icio.us digg facebook Reddit Mixx BlinkList Fark Furl NewsVine Simpy Spurl Segnalo Technorati blogmarks Google YahooMyWeb Windows Live



ASP Course: Redirect - www.itechcollege.com
Copyright ©2008, itechcollege.com. All rights reserved
iTechCollege | About iTech | Contact iTech