Are query string keys case sensitive?

前端 未结 4 1168
醉酒成梦
醉酒成梦 2020-12-13 07:57

Suppose I have a url like this:

http://www.example.com?key=123&KEY=198

Then what will be result of

request.querystring         


        
4条回答
  •  借酒劲吻你
    2020-12-13 08:47

    According to hurl.it, key will be equal to 123 and KEY, 198. They will be accessible as two different querystrings.

提交回复
热议问题