iTech College - Internet Technology, Online Education, E-Learning, Technician Training, Tech Tutorials, Distance Education, Virtual Learning ASP Course: If Then Statement - www.itechcollege.com ASP Course: If Then Statement - 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 > If Then Statement

If ...Then...

Let's modify the above two pages:

first.asp:

<html> 
<body> 
<form action="second.asp" method="post">
User Name: <input type="text" name="user">
Password: <input type="password" name="pass">
<input type="submit" value="Send Query String">
</form>
</body> 
</html>

second.asp:

<html>
<body>
<%
u=request("user")
p=request("pass")
if ((u="John") and (p="John123")) then
response.write "Hi" & u & ", your login is valid."
else
response.write "Sorry, invalid login"
end if
%>
</body>
</html>

Open first.asp on web brower, enter some values as user name and password in the boxes, then submit. You will see, if you entered "John" for the user name and "John123" for the password, then the output on second.asp is:

Hi John, your login is valid

Otherwise, you will see the message:

Sorry, invalid login

The basic syntax of "If... then..." is:

if ... then

...

end if

You can use "else" or "elseif .. then" to make more choices:

if ... then


...


elseif ... then


... 


else


...


end if
  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: If Then Statement - www.itechcollege.com
Copyright ©2008, itechcollege.com. All rights reserved
iTechCollege | About iTech | Contact iTech