Per ottenere le informazioni dall'utente, l'oggetto di richiesta di asp � usato.
Oggetto di richiesta
� denominato una richiesta quando un browser chiede una pagina da un assistente. Per ottenere le informazioni dall'utente, l'oggetto di richiesta di asp � usato. Le relativi collezioni, propriet� e metodi sono descritti qui sotto:
Collezioni:
Collection
Description
ClientCertificate
Contains all the field values stored in the client certificate
Cookies
Contains all the cookie values sent in a HTTP request
Form
Contains all the form (input) values from a form that uses the post method
QueryString
Contains all the variable values in a HTTP query string
ServerVariables
Contains all the server variable values
Propriet�
Property
Description
TotalBytes
Returns the total number of bytes the client sent in the body of the request
Metodi
Method
Description
BinaryRead
Retrieves the data sent to the server from the client as part of a post request and stores it in a safe array
Trasmettere le informazioni di domanda quando un utente scatta sopra un collegamento usando QueryString
<html>
<body>
<form action="demo_simpleform.asp" method="post">
Your name: <input type="text" name="fname" size="20" />
<input type="submit" value="Submit" />
</form>
<%
dim fname
fname=Request.Form("fname")
If fname<>"" Then
Response.Write("Hello " & fname & "!<br />")
Response.Write("How are you today?")
End If
%>
</body>
</html>
O/P:
Your Name:
Results:
Hello Ravi!
How are you today?
Generare un biscotto benvenuto
<%
dim numvisits
response.cookies("NumVisits").Expires=date+365
numvisits=request.cookies("NumVisits")
if numvisits="" then
response.cookies("NumVisits")=1
response.write("Welcome! This is the first time you are visiting this
Web page.")
else
response.cookies("NumVisits")=numvisits+1
response.write("You have visited this ")
response.write("Web page " & numvisits)
if numvisits=1 then
response.write " time before!"
else
response.write " times before!"
end if
end if
%>
<html>
<body>
</body>
</html>
O/P:
Welcome!
This is the first time you are visiting this Web page.
Forma di inizio attivit� usando l'accumulazione della forma