I have a project, where I need the user to access the system, the system updates the page automatically, only once. I've found how to do this from time to time (5 in 5 seconds, for example), but I need to update only once.
To update every 5 seconds, I am using this code in my controller:
Response.AddHeader("Refresh", "5");
Is there any way to adapt to upgrade only once?