I want to know how to how to step back 2 steps on browser history using redirect inside an action in MVC controller?
I have this code on my Controller, a post action, that returns 1 step back on history:
return Redirect(Request.UrlReferrer.ToString());
But I need to back 2 steps.
No solution on client solves my problem, because I need to use inside the Action on my controller. I hope something similar to .history(-2) on client, when using javascript. Does anyone can help me?