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
- OSError: cannot open resource - Python
- Python read file line count
- How to Encode & Decode using Base64 in Python?
- Unspecified error-The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Cocoa support.
- How to generate a Captcha verification code image with Python?
- How to show an image using path python PIL?
- How to remove Background from the images using Python?
- Python generate QR code image
Related Article