Share a small case of Request object
May 23, 2017 am 11:47 AMWe will make a page that can remember the name of the visitor. In this small case, you will learn how to use the values of the Cookies, Form and ServerVariables collections of the Request object, and you can also learn how to use the Response object to send Cookies. .
First, let’s take a look at the program code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
When running for the first time, Cookies information cannot be obtained, and the form is displayed for the user to submit, as shown below:
Submit the form, or POST to the current ASP page. Because Cookies still cannot be obtained, the page with successful submission of the form is displayed, as shown below:
Refresh the current page RequestCookies.asp again, because Cookies can be obtained and the visitor's name is directly displayed.
Let’s explain in detail the part that allows the user to enter their name and save it. First, get the value of the ServerVariables variable REQUEST_METHOD. This value identifies the request method of the current page. If it is the POST method, it means that the form is being submitted to this page. At this time, the value of the form must be obtained and the Response.Cookies collection will be used to output cookies to the client. Otherwise, the HTML code for the user to fill in the name will be displayed.
Little knowledge
Trim function removes spaces on both sides of a string, LTrimThe function deletes the spaces on the left side of the string, and the RTrim function deletes the spaces on the right side of the string. The
UCase function converts the specified string to uppercase, and the LCase function converts the specified string to lowercase.
【Related Recommendations】
1. Summary of Asp.net built-in object Request object usage examples
2. Talk about the use of the two objects Request and Response
3. Share the request object in asp Five methods to obtain client data
4. Detailed explanation of ASP.NET system object Request
The above is the detailed content of Share a small case of Request object. For more information, please follow other related articles on the PHP Chinese website!

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Convert an array or object to a JSON string using PHP's json_encode() function

Source code exploration: How are objects called in Python?

How to convert MySQL query result array to object?

How to use the urllib.request.urlopen() function to send a GET request in Python 3.x

Use Python's __contains__() function to define the containment operation of an object

Use Python's __le__() function to define a less than or equal comparison of two objects
