ASP.NET Show - Scrolling bottom transition effect

 


See also how to customize the scrolling effect.

Example Code

<obshow:Show id="Show1" runat="server" TransitionType="Scroll" ScrollDirection="Bottom">
    <Panels>
        <obshow:Panel>
            ... Panel Content here ...    

VB.NET
Show1.TransitionType = TransitionType.Scroll
Show1.ScrollDirection = ScrollDirection.Bottom


C#
Show1.TransitionType = TransitionType.Scroll;
Show1.ScrollDirection = ScrollDirection.Bottom;