I have a GridView inside of a scrollable Panel (style="overflow: auto;") which contains Employee Names.
The GridView onRowCommand executes a function that takes the DataKey value from the GridView, which is then used as a SQL Stored Proc Parameter to return the selected employee's records into a different GridView.
This works fine, except if I scroll down the list of Employee Names in the first GridView and click on an Employee near the bottom, the second GridView displays correctly, BUT the Employee Names jump back to the top of the scrollable Panel / GridView.
How can I get it to only refresh the Employee Details and not the Employee Names?
(My Page Load only executes the LoadEmployeeNames if Page is not Postback - in fact, I can confirm that the Employee Names list is not being reloaded when I click an Employee Name)