I have gone through this link and am facing the same problem, which is not resolved.
So here is the simple thing,I have the below code:
return View("ResetPassword", resetPasswordModel);
Now, along with model, I want to pass a query string which should get appended in the URL. Is there any way to pass the model as well as query string in the same call?Please remember, I m gonna redirect to this view, not to another action method.(So RedirectToAction won't work!)
Thanks in advance.