Is it possible (and how) to send a post request with an array stored in a single parameter? like
myStringArray=hello,world
and an action that accepts this parameter as an array with ,
as separator
public ActionResult MyAction(string[] myStringArray)
{
//myStringArray[0] == "hello" and myStringArray[1] == "world"
}
the format of the parameter myStringArray doesn't matter. But it has to be a single parameter.
Thank you