I'm calling an action name PaymentStatus with a query string and I'm binding query string parameters with my model.
Here it is.
[HttpGet("PaymentStatus")]
public ActionResult PaymentStatus([FromQuery]ResponseMsgVM res)
{
return Redirect(@"http://localhost:27089");
}
Now problem is that I want to Redirect to another URL with the query string of the current request.
Please help me how can I do this?