I have seen some posts relating to this but can\'t seem to get it to work. With the redirect I get a \'resource cannot be found error\'.
I am trying to redirect to a De
redirect with query string
$('#results').on('click', '.item', function () { var NestId = $(this).data('id'); // var url = '@Url.Action("Details", "Artists",new { NestId = '+NestId+' })'; var url = '@ Url.Content("~/Artists/Details?NestId =' + NestId + '")' window.location.href = url; })