AlwaysVisibleControl in the Asp.Net Ajax extension for showing a control even when user Scrolls
Posted on 2/10/2007 10:34:50 AM
in #Atlas
Hi/P>
Another very cool control of the Asp.Net Ajax extension is the AlwaysVisibleControl. As the name suggest always visible control is always visible in the page. This is really helpful if you have a long scrolling page and you want some Part of the page to be always visible./P>
The main properties of the extender control are TargetControlID. This spifies the Control that will be always visible. Typically this will be user control. VerticalSide property can be either Top Middle or bottom. This property is used to define where the control be docked on the vertical end. Similarly HorizontalSide property takes Left, Center or Right as a paramater and defines where to dock the control horizontally. The VerticalOffset and HorizontalOffset property defines distance from the edge of the browser in pixel. We can also define the duration in seconds of the scrolling effect of the control. By default this property is set to 0.1 Second./P>
To avoid having the control flash and move when the page loads, it is recommended that you absolutely position the control in the desired location in addition to attaching the extender/P>
Hope this helps Thanks Vikram/P>
|