I'm trying to do a simple pulse animation in ASP.NET using the AJAX Toolkit. It works in all other browsers except IE where it just stays static. Anyone know if there's a way to make it compatible with IE? I read something about ForceLayoutInIE but not sure if that's for pulse or just Fade.
Here's the code. Don't mind the Timer, that's for something else.
<asp:UpdatePanel ID="upnlMessage" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:Timer ID="Timer1" runat="server" Interval="10000" OnTick="Timer1_Tick" />
<center>
<asp:Label ID="lblMessage" runat="server" CssClass="feedbackmessage" />
<ajax:AnimationExtender ID="lblMessage_AnimationExtender" runat="server" Enabled="True"
TargetControlID="lblMessage">
<Animations>
<OnLoad>
<Sequence>
<Pulse Duration="0.5" Iterations="0" />
</Sequence>
</OnLoad>
</Animations>
</center>
</ContentTemplate>
</asp:UpdatePanel>