How best to get an array(item=>value) pair as a GET / POST parameter?
In PHP, i can do this: URL: http://localhost/test/testparam.php?a[one]=100&a[two]=200
this gets the parameter as:
Array
(
    [a] => Array
        (
            [one] => 100
            [two] => 200
        )
)
Is there any way to accomplish the same in ASP.NET MVC?