0
How to redirect to an action in ASP.Net MVC, using Jquery?
I’m trying to do it like this:
$("#Filtro").change(function () {
@Url.Action("Answer");
});
0
How to redirect to an action in ASP.Net MVC, using Jquery?
I’m trying to do it like this:
$("#Filtro").change(function () {
@Url.Action("Answer");
});
0
There are some examples here on the site, and the command is window.location.href passing the value of the address, example:
$("#Filtro").change(function () {
window.location.href = '@Url.Action("Answer")';
});
to be redirected to the desired page.
References
Browser other questions tagged jquery asp.net-mvc
You are not signed in. Login or sign up in order to post.