I have several controls on my page that do a postback (dropdowns, textboxes, checkboxes, etc). I have textboxes inside my grid that once the user changes a value in the textbox, I have to recalculate other fields in the grid and on the page.
The problem is, when the postback occurs, it resets the screen to the top of the page. There are times when there will be several hundred or a thousand items in the grid (they don't want to page thru the grid), so if they are working with item #100, after tabbing out of one of the textboxes it will reset the screen to the top. Then they will have to scroll down, find where they left off and then continue. Frustrating for the user, at the very least.
What can I do to work around this behavior? Is there a way to tell .NET to go back to the last control they were working on, even after the postback occurs?
Thanks,
Shey
The problem is, when the postback occurs, it resets the screen to the top of the page. There are times when there will be several hundred or a thousand items in the grid (they don't want to page thru the grid), so if they are working with item #100, after tabbing out of one of the textboxes it will reset the screen to the top. Then they will have to scroll down, find where they left off and then continue. Frustrating for the user, at the very least.
What can I do to work around this behavior? Is there a way to tell .NET to go back to the last control they were working on, even after the postback occurs?
Thanks,
Shey