In this article I will show you how to redirect in mvc using a jQuery script code. When the user clicks the button JQuery event is triggered on that you can assign controller action to location.href.
Example:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#btnForgotPassword').click(function (e) {
location.href = '@Url.Content("~/Account/ForgotPassword/")';
});
});
</script><input id='btnForgotPassword' type="button" value="ForgotPassword" />
Post your comments / questions
Recent Article
- Fix-Gradient effect turning to gray in after effects
- How to blur an image in python?
- ModuleNotFoundError: No module named 'whois' in Python GoviralHost Without Terminal
- How to Convert Image to Pencil Sketch in Python?
- AttributeError: module 'urllib' has no attribute 'request' - Python
- How to Extract audio from video files using python?
- PermissionError: [Errno 13] Permission denied: 'shampoo_sales.csv' - Python
- [WinError 145] The directory is not empty: 'FolderPath' - Python
Related Article