Post Redirect Get is a typical web development Design Pattern that solves the problem of sending duplicate post request on page refresh (F5 problem). This problem has been known for many years and there are many solutions, but the simplest and most common one is the Post Redirect Get(PRG) pattern. Not everyone knows that this solution is actually classified as design pattern due to its simplicity.
So as I said the solution is very simple:
...