| Moving to a new page. |
Response.Redirect "Newpage.htm" |
header("Location: Newpage.htm") |
| |
| Stopping the processing. |
Response.end |
die() |
| |
| Writing text to the page. |
Response.write "Some Text" |
echo 'Text'; |
| |
| Get user form data. |
Name=Request.Form("Name") |
$Name=$HTTP_POST_VARS['Name']; |
| |
| Get user QueryString data. |
Name=Request.Querystring("Name") |
$Name=$HTTP_POST_VARS['Name']; |
| |
| Condition Handling |
if Name="Nigel" then ' Do something else ' Or This end if |
if Name=="Nigel" { // Do something } else { // Or This } |
| |
| Multi-choice options |
Select Case Name case "Nigel" ' Do something ( No Need for Break ) case "John" ' Do something for user John End Select |
Switch($Name) { case 'Nigel': break; // Required after code. case 'John': break;// Required after code. } |
| |
*Comments are the views of individuals, they may or may not be correct.
All comments are reviewed and accepted or rejected.
If you give an email address, you will be sent an email when someone makes a comment on this page.*