Request. querystring ["ID"] is different from request ["ID "]

Source: Internet
Author: User
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. The priority order is querystring> form> cookies> servervariables. That is to say, if the address bar parameter named ID exists, the effect of request ["ID"] and request. querystring ["ID"] is similar. 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 it does not exist, continue to check the cookie named ID. If it does not exist, continue to 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 of request ["ID "]:Code:
 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 = 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.