DataTables 1.10.x new Querystrings??
DataTables 1.10.x new Querystrings??
jdixon86
Posts: 3Questions: 2Answers: 0
Maybe i'm having trouble figuring this out but I've noticed the querystrings are pretty strange. For example the key for searching is &search[value]=<data>
I don't see this working very well for some frameworks like NancyFx? You get the querystrings by calling Request.Query.search[value] but due to the [value] it won't work properly.
Am I missing something? How are you calling this with C# / Nancyfx?
This discussion has been closed.
Answers
Nevermind.. apparently I stayed up too late working.
Just use Request.Query["search[value]"] instead of Request.Query.search[value] if you have a dynamic object.