Slide 11.10: REQUEST_METHOD: GET (cont.)
Slide 11.12: REQUEST_METHOD: POST (cont.)
Home

REQUEST_METHOD: POST

Visual Studio 2019 was just released in 2019 and is not yet a stable release. The instructor believes the property PostBackUrl of the control Button has a bug, which does not allow the data to be sent across pages. There are other ways to bypass this. You may just use the GET method.
Using this method, data is sent as a standard input stream to the program, and saved in the Request.Form variable of an associative array. For example, if the input IDs are email, password, and button1, respectively, the standard input may contain the following string after users enter the requested information and submit:
 email=userid%40cs.und.edu&password=260&button1=customer
and the variable values are in the ASP.NET script. The code ‘%40’ is for the symbol ‘@’. The following demonstration shows an example of the POST method assuming
      Input1:    Input2: