Have you ever encountered the issue where clicking the browser back button on any ASP .NET MVC page does nothing, and the page does not update unless you hit F5 to refresh it?
It seems that the main problem lies in making changes to the DOM of the page, such as adding table rows, selecting radio buttons, etc. And when you try to go back to the page using the browser back button, none of these changes are reflected.
Is there a way to resolve this issue for ASP .NET MVC 5?
Any tips or suggestions would be greatly appreciated...
P.S. I have already checked out but it did not provide a solution...