var orders = String (Request.QueryString("ordini"));

var arr = orders.split("|");

for (i=0;i<arr.length;i++) {
Response.Write(arr[i]);
}