Url redirection in MVC
Is there any way to redirect to a new URL by making call from javascript to MVC Controller without showing query parameters in the browser.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Saineshwar BageriPosted Feb 23, 2016, 2:35 AM
Shailesh UkePosted Feb 23, 2016, 2:27 AM
pankaj kumarPosted Feb 18, 2016, 6:06 AM
Monica BundelPosted Feb 17, 2016, 6:15 AM
pankaj kumarPosted Feb 17, 2016, 5:54 AM
Saineshwar BageriPosted Feb 8, 2016, 1:14 AM
var NestId = $(this).data('id');
var url = "/Artists/Details?NestId=" + NestId;
window.location.href = url;
})