I have a Javascript library that passes a dictionary in the post data like this:
sort[columnName] = asc
If I do something like:
[HttpPost]
public ContentResult tableData(Dictionary<string,string> sort)
It doesn't parse it. Do I need to parse this by hand? Or is there a way?
I'm Sure this question has been asked before but due to the syntax it seems impossible to find.