I am trying to reload a classic .asp page after a user does an update via a form.
The page contains about three screenfuls of information.
The update works perfectly well, but I'm aiming to have the updated page show at the same point where the user left it, just before performing the update.
I am using this :
Response.Redirect("viewstudent.asp")
This does reload the correct page after the update, but the user has to scroll down to the place where he started from.
Is there any way to make some sort of "bookmark" to make the page reload at a specific point?
Thank you.