I have a Booking Form in a webform on my website.
3 options have autopostback enabled. Problem is when one is triggered, the page reloads from the top.
How to reload from the option that did the postback?
I’m sure there’s an easy solution to this?
Regards
Tea
Set
MaintainScrollPositionOnPostbacktotrue.You can set it programmatically
In the page declaration
Or in the web.configs
<system.web>section.Another option is to use asynchronous postbacks for example with the ASP.NET Ajax Control Toolkit. Then only certain areas are reloaded with javascript and not the whole page.