I am using an ASP GridView. Each row has a unique ID like this: <tr id="abc123">
When this page is visited, I may get the ID from session or query string in Page_Load()
. If I find the ID, I need to scroll to the specific row.
I cannot use AJAX or jQuery because it is a legacy application. There are few solutions I have found but they are depending on jQuery/AJAX/Bootstrap etc. For example, this or this. This is not a postback, so I cannot use MaintainScrollPositionOnPostback
.