In javascript request I added two parameters with same name but different case
*.setPostDataItem("FluentSearch", scope.search); (abc)
*.setPostDataItem("fluentSearch", scope.search); (abc)
My server side code controller->action parsed it as
string FluentSearch = abc, abc
So at the server parameter we have at one string parameters duplicate value by comma delimited.
I expect that server should parse request and wrote them ones without comma.
Where and why Asp.Mvc
pre works same parameters twice by comma?
Is it specific action executor before?