using If -then_else construct
This example will pass month and location to the response form which
will utilize if-then-else constructs to determine what to print based
on the month and location
IFthenForm.asp
<html>
<head>
<title> Baseball field</title>
</head>
<body>
<h1>BaseBall Information</h1>
<h3>To get the logistics information for your game please answer
two questions:</h3>
<form action="IfThenAction.asp" method="post">
Please choose your preference in month, either March or April:<br>
<input type="text" Name="monthpref"><p>
Please input your preference in location, either East or West<br>
<input type="text" name="location">
<br>
<input type="submit"><input type="reset">
</form>
</body></html>
IfThenAction.asp
<html>
<head>
<title> Baseball field schedule</title>
</head>
<body>
<%
varMonthPref=Request.form("MonthPref")
varLocation=Request.Form("location")
%>
<!--
Get he month and location from the Form and save in varMonthPref
and VarLocation variables.
//-->
<% Response.Write "<h1> Baseball scheduling for your
choice</h1>"
if varMonthPref="March" then
Response.write "Your game will be held on March 15th"
else
response.write "Your game will be held on April 16th"
end if
%>
<!--
if the month is march, then write out game will be held on March
15th, otherwise print out that game will be held on April 16th
//-->
<%
if varLocation="East" then
response.write "in White Hall, New Mexico"
else
response.write "In Pullman, Idaho"
end if
%>
</body>
</html>
|