Using Animations with the PopupControlExtender
I was looking for a solution to provide a “fly-in” form when a user would click on a particular button. I found it with the PopupControlExtender. The documentation for Animations with controls is poor so with some testing, I finally got a solution working for me. I added a button and a panel on my page. I set the panel below the button and set the style to: .myPanel { background-color: white; border: 1px solid black; z-index: 99; width: 0px; height: 0px; } My panel was then setup like so: <asp:Panel ID=”MyTestPanel” runat=”server” CssClass=”myPanel” > <asp:RadioButtonList ID=”TestRadioButtonList” runat=”server” AutoPostBack=”true”> <asp:ListItem … Continue reading Using Animations with the PopupControlExtender