Set anchor link

Is there an easy way to assign an anchor link to a dynamically created web container?
My intention is to be able to scroll later to its position.

Thank you.

Each WebControl has a ControlID property matching the HTML id property.

If you want to scroll to a specific control you should be able to use

Session.hashtag = aSpecificControl.ControlID
2 Likes

Thanks Jeremy_LL, this easily solve my problem.