In MVC4, a controller named UserController contains an action ForgotPassword and a respective view is also created. This view contains one textbox and one submit button. On the submit of this button the email id should be verified, if not found in record, it should show a error message on the same view, else navigate to different view. I have used Begin Form for mapping the submit button to a new action VerifyEmailId in UserController. However I am stuck on passing the view based on the validity of the email id. Note that this action VerifyEmailId does not have any related view.In MVC4, a controller named UserController cont