When passing multiple values using jquery's post method, the background page can receive
in the form of an array as shown below
The $.post method does not support passing parameters in the form of arrays, so in the above jquery code, pass it as a string. The aspx page in the background can receive it as an array. Form splitting, the code is as follows
string arr = Request[" arr"].ToString();
string[] myarr = arr.Split(',');
string message = myarr[0];
string name = myarr[1];
string action = myarr[2];
string time = myarr[3];
In this way, the corresponding value can be obtained.