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". |