AnimationExtender

seeerg_23
Дата: 14.04.2010 16:49:15
нужно, чтобы по нажатию на кнопку появлялось тут же небольшое окошко. Нужно сделать, как тут
http://www.asp.net/ajax/ajaxcontroltoolkit/Samples/Animation/Animation.aspx. Прикрепил к кнопке AnimationExtender. ввёл код, который на этом сайте предлагают:

<asp:LinkButton ID="LinkButton1" runat="server">Характеристики</asp:LinkButton>
<cc1:AnimationExtender ID="LinkButton1_AnimationExtender" runat="server"
Enabled="True" TargetControlID="LinkButton1">
<Animations>
<OnClick>
<Sequence>
<%-- Disable the button --%>
<EnableAction Enabled="false" />
<%-- Show the flyout --%>
<Parallel AnimationTarget="flyout" Duration=".3" Fps="25">
<Move Horizontal="150" Vertical="-50" />
<Resize Height="260" Width="280" />
<Color AnimationTarget="flyout" PropertyKey="backgroundColor"
StartValue="#AAAAAA" EndValue="#FFFFFF" />
</Parallel>
<%-- Fade in the text --%>
<FadeIn AnimationTarget="info" Duration=".2"/>
<%-- Cycle the text and border color to red and back --%>
<Parallel AnimationTarget="info" Duration=".5">
<Color PropertyKey="color"
StartValue="#666666" EndValue="#FF0000" />
<Color PropertyKey="borderColor"
StartValue="#666666" EndValue="#FF0000" />
</Parallel>
<Parallel AnimationTarget="info" Duration=".5">
<Color PropertyKey="color"
StartValue="#FF0000" EndValue="#666666" />
<Color PropertyKey="borderColor"
StartValue="#FF0000" EndValue="#666666" />
<FadeIn AnimationTarget="btnCloseParent" MaximumOpacity=".9" />
</Parallel>
</Sequence>
</OnClick>
</Animations>
</cc1:AnimationExtender>
1. но по нажатию на кнопку ничего не происходит. должно ж хотя бы пустое окно появляться!!!???
2. где вводить тектс, котоый будет в всплывающем окне отображаться??