<html>
<body>
<%
Dim RequestMethod
RequestMethod = ("REQUEST_ METHOD")
' GetREQUEST_METHODThe value of,and save it in local variables.whenWebThe page is marked by a formActionWhen parameter calls,REQUESTMETHODThe value ofPost.Other times, User typed the address directly into the browser,Refresh the page,Or click a link to call the page,REQUEST_METHODThe value ofGet.
If RequestMethod = "GET" Then
' examineREQUEST-METHODThe value of.IfThe structure contains a block code that is executed when the condition is true,Contains oneElsepiece,Being held when the condition is false.Refresh the page.
%>
oh,You can't refresh and browse the current content of the screen now!If you want to change the form data,Please use the back key to return to the form,Or return by submit.
<%Else
%>Welcome to dance with the wind!
' Press the form submission button to display.
<%
= ("Name")
%>.
<P>Your favorite domestic car:
<%DIM favCaramre
favCaramre = ("Caramre")
If favCaramre = "OLYMPUS " Then
("oh,Please wait!")
("<P>A <B>OLYMPUS </B>?")
Else
(favCaramre & ".<P>Awesome!")
End If
%>
<%End If%>
</body></html>