C# のコード ビハインドに js 多次元配列 (次元はコンパイル時に不明) を渡す必要があります。次の方法でこれを行いました。
var AdjustItems = ""; //My string variable to store the array separated with '|' and '-'
for (var i = 0; i < adjusts.length; i++) { //adjusts is my js array
AdjustItems += adjusts[i].Motive + '|' + adjusts[i].Amount.toFixed(2).toString() + '-';
}
if (AdjustItems != "") {
AdjustItems = AdjustItems.substring(0, AdjustItems.length - 1);
}
g('arrAdjust').value = AdjustItems; //arrAdjust is my hidden input.
C#の文字列ではなく、配列のように配列を取得できる別の方法はありますか?