I'm using PRG Pattern for HTTP Post in MVC. While I read about this I got some positive feedback on this method. And I felt this is the best approach.
Here is the reference: Post-Redirect-Get article on Andre Loker blog.
But when I use this, there is a disadvantage I've came across:
I've pagination in my page. When I am in 5th page - if I post any data, then it'll be redirected by PRG. So It goes to 1st page. I want to stay on the same 5th page.
So my question is: how to preserve opened page after posting a request?
Instead of
Use like the following