Let\'s say I have some url that looks like this: www.myhost.com/mypage?color=blue
In Asp.Net Core, I\'d expect to get the color query parameter value by doing the fo
Because your query can look like this:
www.myhost.com/mypage?color=blue&color=red&color=yellow
And you get all those color values from the one Request.Query["color"] parameter
color
Request.Query["color"]