<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>ASP.NET AJAX Control Toolkit</title><link>http://forums.asp.net/1022.aspx</link><description>Here's your place to discuss everything in and about the AJAX Control Toolkit</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: Animation Extender and IFrame and IE</title><link>http://forums.asp.net/thread/3274523.aspx</link><pubDate>Sat, 04 Jul 2009 09:56:02 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3274523</guid><dc:creator>jjme88</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3274523.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1022&amp;PostID=3274523</wfw:commentRss><description>&lt;p&gt;hi&amp;nbsp; Zhi-Qiang Ni&lt;/p&gt;&lt;p&gt;Thanks for this what i had to do in the end was add the following;&lt;/p&gt;&lt;p&gt;&amp;lt;FadeIn&amp;nbsp; Fps=&amp;quot;30&amp;quot; Duration=&amp;quot;1&amp;quot; &lt;b&gt;ForceLayoutInIE=&amp;quot;false&amp;quot;&lt;/b&gt; AnimationTarget=&amp;quot;pageImage&amp;quot; /&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;In IE I still found the iframe had no transparantcy, without adding ForceLayoutinIE.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;this partically resolved my issues in IE, i say partially as the transparant background now works, but any images that I fade in that have transparancy in them do not display properly.&amp;nbsp; Take a png file with some drop shadow effects and a transparent background and try fading that in.&amp;nbsp; In Firefox and Safari it works great but in IE the shadows go nasty.. its like the old days with lake of support for png files in IE.&lt;/p&gt;&lt;p&gt;I would be really interested to know if the same happens to you.&lt;/p&gt;&lt;p&gt;cheers.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: Animation Extender and IFrame and IE</title><link>http://forums.asp.net/thread/3268157.aspx</link><pubDate>Wed, 01 Jul 2009 07:20:07 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3268157</guid><dc:creator>Zhi-Qiang Ni - MSFT</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3268157.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1022&amp;PostID=3268157</wfw:commentRss><description>&lt;p&gt;Hi jjme88,&lt;/p&gt;
&lt;p&gt;I can not reproduce this issue only according to your description, here is my test code:&lt;/p&gt;&lt;pre class="xhtml:nogutter" name="code"&gt;&amp;lt;%@ Page Language=&amp;quot;vb&amp;quot; AutoEventWireup=&amp;quot;false&amp;quot; CodeBehind=&amp;quot;TestIframeFade.aspx.vb&amp;quot;
    Inherits=&amp;quot;SoluTest_AnimationInUserControl.TestIframeFade&amp;quot; %&amp;gt;

&amp;lt;%@ Register Assembly=&amp;quot;AjaxControlToolkit&amp;quot; Namespace=&amp;quot;AjaxControlToolkit&amp;quot; TagPrefix=&amp;quot;cc1&amp;quot; %&amp;gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot; &amp;quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&amp;quot;&amp;gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot;&amp;gt;
&amp;lt;head runat=&amp;quot;server&amp;quot;&amp;gt;
    &amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;

    &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;

        function pageLoad() {
        }
    
    &amp;lt;/script&amp;gt;

    &amp;lt;style type=&amp;quot;text/css&amp;quot;&amp;gt;
        #iframe1
        {
            height: 300px;
            width: 500px;
        }
    &amp;lt;/style&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;form id=&amp;quot;form1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;
    &amp;lt;div style=&amp;quot;background-color: #00FF00&amp;quot;&amp;gt;
        &amp;lt;asp:ScriptManager ID=&amp;quot;ScriptManager1&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt;
        &amp;lt;iframe runat=&amp;quot;server&amp;quot; id=&amp;quot;iframe1&amp;quot; src=&amp;quot;TestAnimationPopup.aspx&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;
        &amp;lt;cc1:AnimationExtender ID=&amp;quot;AnimationExtender1&amp;quot; runat=&amp;quot;server&amp;quot; Enabled=&amp;quot;True&amp;quot; TargetControlID=&amp;quot;iframe1&amp;quot;&amp;gt;
            &amp;lt;Animations&amp;gt;
                &amp;lt;OnLoad&amp;gt;
                    &amp;lt;Sequence&amp;gt;
                        &amp;lt;FadeIn Duration=&amp;quot;2&amp;quot;/&amp;gt;
                    &amp;lt;/Sequence&amp;gt;
                &amp;lt;/OnLoad&amp;gt;
            &amp;lt;/Animations&amp;gt;
        &amp;lt;/cc1:AnimationExtender&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;/form&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;br /&gt;&lt;br /&gt;Have it helped? If not, please post your code snippet here.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Zhi-Qiang Ni&lt;/p&gt;</description></item><item><title>Animation Extender and IFrame and IE</title><link>http://forums.asp.net/thread/3259627.aspx</link><pubDate>Fri, 26 Jun 2009 09:01:06 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3259627</guid><dc:creator>jjme88</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3259627.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1022&amp;PostID=3259627</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;HI all I have an IFrame that I want to FadeIn on its load event.. so have the AnimationExtender wired up to it.. no problem and the fade works great each time the IFrame loads up.. my problem is that the Iframe needs to have a trasparant background and this all works&amp;nbsp;just fine in Forefox, and Safari, but on IE 8 (with compatibility view on or off)&amp;nbsp;as soon as i wire up the animationextender to the Iframe it looses the Transparancy.. anyone got any ideas why or better still how I can overcome it?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;</description></item></channel></rss>