Table of Contents
Little knowledge" >Little knowledge
Home Backend Development C#.Net Tutorial Share a small case of Request object

Share a small case of Request object

May 23, 2017 am 11:47 AM

We 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

<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%><!doctype html><html><head><meta charset="utf-8"><title>用Cookies记住访问者的姓名</title></head><body><%Dim sUserName

sUserName = Trim(Request.Cookies("name"))&#39;判断name是否为空,不为空则输出name的值If sUserName = "" Then

  &#39;判断是否是POST刚提交了表单,是的话则获取表单内容输出Cookies

  If UCase(Trim(Request.ServerVariables("REQUEST_METHOD"))) = "POST" Then

    sUserName = Trim(Request.Form("name"))

    Response.Cookies("name") = sUserName

    Response.Cookies("name").Expires = DateAdd("d", 1, Now)    &#39;Cookies一天后过期    Response.Write("我已经记住您的姓名了!")  Else

    &#39;否则显示表单,让用户提交表单%>

    <form method="post" action="">

    请告诉我您的姓名 : <input name="name" type="text"/>

    <input type="submit" value="提交" />

    </form><%

  End If Else

  Response.Write("您好," & sUserName)End If%></body></html>

Copy after login

When running for the first time, Cookies information cannot be obtained, and the form is displayed for the user to submit, as shown below:

Share a small case of Request object

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:

Share a small case of Request object

Refresh the current page RequestCookies.asp again, because Cookies can be obtained and the visitor's name is directly displayed.

Share a small case of Request object


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!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Convert an array or object to a JSON string using PHP's json_encode() function Convert an array or object to a JSON string using PHP's json_encode() function Nov 03, 2023 pm 03:30 PM

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

What does php request mean? What does php request mean? Jul 07, 2021 pm 01:49 PM

What does php request mean?

Source code exploration: How are objects called in Python? Source code exploration: How are objects called in Python? May 11, 2023 am 11:46 AM

Source code exploration: How are objects called in Python?

What is the Request object in PHP? What is the Request object in PHP? Feb 27, 2024 pm 09:06 PM

What is the Request object in PHP?

How to convert MySQL query result array to object? How to convert MySQL query result array to object? Apr 29, 2024 pm 01:09 PM

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 How to use the urllib.request.urlopen() function to send a GET request in Python 3.x Jul 30, 2023 am 11:28 AM

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 __contains__() function to define the containment operation of an object Aug 22, 2023 pm 04:23 PM

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 Use Python's __le__() function to define a less than or equal comparison of two objects Aug 21, 2023 pm 09:29 PM

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

See all articles