The difference between method=post/get in Form

The difference between method=post/get in Form
Form provides two ways of data transmission - get and post. Although they are both ways of submitting data, they are very different in actual transmission and may have serious impact on the data. Although the Web container has shielded some differences between the two in order to facilitate obtaining variable values, understanding the differences between the two will be very helpful in future programming.

The get and post methods in Form correspond to the GET and POST methods in the HTTP protocol respectively during data transmission. The main differences between the two are as follows:

1. Get is used to obtain data from the server, while Post is used to pass data to the server.

2. Get adds the data in the form to the URL pointed to by action in the form of variable=value, and the two are connected with "?", and each variable is connected with "&"; Post puts the data in the form in the data body of the form, and passes it to the URL pointed to by action in the corresponding way of variables and values.

3. Get is not safe because the data is placed in the requested URL during the transmission process. Many existing servers, proxy servers or user agents will record the request URL in a log file and then put it somewhere. In this way, some private information may be seen by a third party. In addition, users can also view the submitted data directly on the browser, and some internal system messages will be displayed to users together. All Post operations are invisible to the user.

4. The amount of data transmitted by Get is small, which is mainly due to the limitation of URL length; while Post can transmit a large amount of data, so only Post can be used when uploading files (of course there is another reason, which will be mentioned later).

5. Get restricts the value of the data set in the Form form to ASCII characters; while Post supports the entire ISO10646 character set.

6. Get is the default method of Form.

The data transmitted by Post can be correctly converted into Chinese by setting the encoding; however, the data transmitted by Get remains unchanged. We must pay attention to this in future procedures.

_________________________________________________________________________________________________

1. The Get method transmits user data through URL request. It connects the name of each field in the form and its content in pairs of strings and places them behind the URL of the program pointed to by the action attribute, such as http://www.mdm.com/test.asp?name=asd&password=sad. The data will be directly displayed on the URL, just like the user clicks a link. The Post method uses the HTTP post mechanism to place the name of each field in the form and its content in the HTML header and transmit them to the server side for processing by the program pointed to by the action attribute. The program will read and process the form data through the standard input (stdin) method.

2. The Get method needs to use Request.QueryString to obtain the value of the variable; while the Post method uses Request.Form to access the submitted content

3. The amount of data transmitted by the Get method is very small, generally limited to about 2 KB, but the execution efficiency is better than the Post method; the amount of data transmitted by the Post method is relatively large. It waits for the server to read the data, but there is also a byte limit. This is to avoid malicious attacks on the server with large amounts of data. According to Microsoft, Microsoft has a limit on the maximum data that can be received by using Request.Form(), which is 80 KB in IIS 4 and 100 KB in IIS 5.

Suggestion: Unless you are sure that the data you submit can be submitted at one time, please try to use the Post method.

4. Submitting data using the Get method will bring security issues. For example, when submitting data using the Get method on a login page, the user name and password will appear on the URL. If the page can be cached or other people can access the client's machine, they can obtain the user's account and password from the history records. Therefore, it is recommended to use the Post method for form submission. A common problem with form pages submitted using the Post method is that a dialog box will pop up when the page is refreshed.

Suggestion : For security reasons, it is recommended to use Post to submit data

<<:  CSS clicks on the radio to switch between two image styles and only one of the multiple radios can be checked

>>:  Vue realizes the palace grid rotation lottery

Recommend

Example of implementing dynamic verification code on a page using JavaScript

introduction: Nowadays, many dynamic verification...

W3C Tutorial (5): W3C XML Activities

XML is designed to describe, store, transmit and ...

GET POST Differences

1. Get is used to obtain data from the server, wh...

Web front-end development course What are the web front-end development tools

With the development of Internet technology, user...

MySQL service and database management

Table of contents 1. Start and stop service instr...

Solve the problem of docker container exiting immediately after starting

Recently I was looking at how Docker allows conta...

New ideas for time formatting in JavaScript toLocaleString()

Table of contents 1. Conventional ideas for time ...

How to Dockerize a Python Django Application

Docker is an open source project that provides an...

Mysql accidental deletion of data solution and kill statement principle

mysql accidentally deleted data Using the delete ...

How to install the latest version of docker using deepin apt command

Step 1: Add Ubuntu source Switch to root su root ...

How to implement a simple HTML video player

This article introduces the method of implementin...

How to quickly set the file path alias in react

React is a JavaScript library for building user i...

Various ways to modify the background image color using CSS3

CSS3 can change the color of pictures. From now o...

Using CSS3 to achieve transition and animation effects

Why should we use CSS animation to replace JS ani...

Implementation of running springboot project with Docker

Introduction: The configuration of Docker running...