I have a method that returns an array (string[]) and I\'m trying to pass this array of strings into an Action Link so that it will create a query string similar to:
Another solution that just came to my mind:
string url = "/Controller/Action?iVal=5&str=" + string.Join("&str=", strArray);
This is dirty and you should test it before using it, but it should work nevertheless. Hope this helps.