Difference between request. querystring and request

Source: Internet
Author: User
Tags servervariables

Request. querystring ["ID"] can only read parameters named ID passed by parameters in the address bar.
Request ["ID"] is a composite function for reading data.
Its priority is
Querystring> form> cookies> servervariables

That is to say, if the address bar parameter named ID exists, the effect of request ["ID"] is similar to that of request. querystring ["ID.
If the address bar parameter named ID does not exist, request. querystring ["ID"] will return NULL, but request ["ID"] will continue to check whether there is a form submission element named ID. If not, check the cookie named ID. If the cookie does not exist, check the server environment variable named ID. It will make up to four attempts, and only returns NULL if all four attempts fail.

The following is the internal implementation code of request ["ID:
Public String This [String key]
{
Get
{
String STR = This. querystring [Key];
If (STR! = NULL)
{
Return STR;
}
STR = This. Form [Key];
If (STR! = NULL)
{
Return STR;
}
Httpcookie cookie = This. Cookies [Key];
If (cookie! = NULL)
{
Return cookie. value;
}
STR = This. servervariables [Key];
If (STR! = NULL)
{
Return STR;
}
Return NULL;
}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.