I have the following arrangement:
foreach (string Id in Arguments.SelectedValues)
{
string temp = @"http://localhost:17277/blob.ashx?Pdf=o|" + Id;
Result.NavigateUrl = @"http://localhost:17277/blob.ashx?Pdf=o|" + Id;
}
in which I access the BLOB where the file is located and download it.
When I execute it, the fix does bring all the IDs, but I only download the file from the last ID in the array.
What do I owe and how can I make it download all the selected ones?