<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://msmvps.com/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>Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx</link><description>Today I've found another post on the AJAX discussion forums asking info about the "Cannot unregister UpdatePanel with ID XXX since it was not registered with the ScriptManager.This might occur if the UpdatePanel was removed from the control tree and latter</description><dc:language>en</dc:language><generator>CommunityServer 2008.5 SP2 (Build: 40407.4157)</generator><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#1690211</link><pubDate>Thu, 23 Apr 2009 17:58:27 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1690211</guid><dc:creator>Thanks!</dc:creator><description>&lt;p&gt;Thank Phillipe, it works like magic&lt;/p&gt;
&lt;p&gt;And thanks Gary for the VB transalation. &amp;nbsp;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1690211" width="1" height="1"&gt;</description></item><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#1677735</link><pubDate>Thu, 12 Mar 2009 12:03:10 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1677735</guid><dc:creator>marcel</dc:creator><description>&lt;p&gt;Phillipe, i am getting errors: can&amp;#39;t find methodinfo and BindingFlags&lt;/p&gt;
&lt;p&gt;does it need a using directive or something?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1677735" width="1" height="1"&gt;</description></item><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#1656435</link><pubDate>Wed, 10 Dec 2008 22:34:13 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1656435</guid><dc:creator>Gary</dc:creator><description>&lt;p&gt;Thanks Philippe for the solution.&lt;/p&gt;
&lt;p&gt;I had struggled with the same problem. &amp;nbsp;I was able to convert your solution to VB and I have provided it below for anyone who is also struggling with this.&lt;/p&gt;
&lt;p&gt;Public Sub RegisterUpdatePanel(ByVal sender As System.Object, ByVal e As System.EventArgs)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim panel As UpdatePanel = Me.UpdatePanel1&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#39;Dim aMethodInfo As System.Reflection.MethodInfo&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;For Each aMethodInfo As System.Reflection.MethodInfo In GetType(ScriptManager).GetMethods(System.Reflection.BindingFlags.NonPublic Or Reflection.BindingFlags.Instance)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;If aMethodInfo.Name.Equals(&amp;quot;System.Web.UI.IScriptManagerInternal.RegisterUpdatePanel&amp;quot;) Then&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;aMethodInfo.Invoke(ScriptManager.GetCurrent(Page), New Object() {panel})&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End If&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Next&lt;/p&gt;
&lt;p&gt;End Sub&lt;/p&gt;
&lt;p&gt;‘ You can then call this method with something like this from the Page_Int.&lt;/p&gt;
&lt;p&gt;AddHandler Me.UpdatePanel1.Unload, AddressOf RegisterUpdatePanel&lt;/p&gt;
&lt;p&gt;I hope this helps.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1656435" width="1" height="1"&gt;</description></item><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#1654054</link><pubDate>Thu, 13 Nov 2008 21:51:16 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1654054</guid><dc:creator>Vlady</dc:creator><description>&lt;p&gt;Please write the code in visual Basic a with real case&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1654054" width="1" height="1"&gt;</description></item><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#1648654</link><pubDate>Tue, 23 Sep 2008 12:23:26 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1648654</guid><dc:creator>Paul</dc:creator><description>&lt;p&gt;Philippe - that&amp;#39;s a real nasty hack!! But it works and I love it - thanks!&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1648654" width="1" height="1"&gt;</description></item><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#1646968</link><pubDate>Sat, 06 Sep 2008 04:48:34 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1646968</guid><dc:creator>rüya tabiri</dc:creator><description>&lt;p&gt;Thanks very much !!&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1646968" width="1" height="1"&gt;</description></item><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#1646817</link><pubDate>Thu, 04 Sep 2008 21:13:33 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1646817</guid><dc:creator>Philippe</dc:creator><description>&lt;p&gt;Thought I&amp;#39;d share this solution with you...&lt;/p&gt;
&lt;p&gt;The problem is that when the UpdatePanel unloads, it is also unregisters itselfs. That being a fact, the solution is to register it again.&lt;/p&gt;
&lt;p&gt;Unfortunately, the method to register an UpdatePanel is private so reflection is the key to invoke said method.&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;public void RegisterUpdatePanel(&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; UpdatePanel panel)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MethodInfo m = &lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(from methods in typeof(ScriptManager).GetMethods(BindingFlags.NonPublic | BindingFlags.Instance)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; where methods.Name.Equals(&amp;quot;System.Web.UI.IScriptManagerInternal.RegisterUpdatePanel&amp;quot;)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; select methods).First&amp;lt;MethodInfo&amp;gt;();&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; m.Invoke(ScriptManager.GetCurrent(Page), new object[] { panel }); &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt;When the UpdatePanel is created, simply hook an handler on it&amp;#39;s Unload event and call the RegisterUpdatePanel method. &lt;/p&gt;
&lt;p&gt;Unfortunately, I cannot guarantee this will work in future Framework build but at the same time, they might just have fixed the issue.&lt;/p&gt;
&lt;p&gt;Hope this helps...&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1646817" width="1" height="1"&gt;</description></item><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#1646115</link><pubDate>Thu, 28 Aug 2008 18:16:12 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1646115</guid><dc:creator>Tommy</dc:creator><description>&lt;p&gt;Well, I&amp;#39;ll go ahead and add this. The problem is removing the Update Panel and then adding it back again. The solution is to not have the Update panel there in the first place, just load it dynamically. Here&amp;#39;s how I got the error, and then what I did to fix it.&lt;/p&gt;
&lt;p&gt;--I have a Panel with an Update Panel inside of it on my page.&lt;/p&gt;
&lt;p&gt;--I wrote a User Control to extend this panel with some extra functionality.&lt;/p&gt;
&lt;p&gt;--The user control basically wraps the panel , so I have :&lt;/p&gt;
&lt;p&gt;&amp;lt;some controls&amp;gt;...&lt;/p&gt;
&lt;p&gt;&amp;lt;PlaceHolder for Panel&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;some more controls&amp;gt;&lt;/p&gt;
&lt;p&gt;--I wrote the Panel up in Visual Studio on the page, and set that Panel to be the Target of my Extender user control, which placed it in the PlaceHolder.&lt;/p&gt;
&lt;p&gt;So here&amp;#39;s what happens: Page_PreInit runs, puts the Panel with the UpdatePanel on the main page. &lt;/p&gt;
&lt;p&gt;Page_Load runs, Removing the Panel from the Page Hierarchy, and then placing it in the UserControl hierarchy (this is where it breaks)...&lt;/p&gt;
&lt;p&gt;So here&amp;#39;s what I did. Instead of designing the Panel on the Page, I create a second user control with the same markup as the Panel. Then, instead of PlaceHolder.Controls.Add(Panel), I do PlaceHolder.Controls.Add(LoadControl(&amp;quot;myControl.ascx&amp;quot;))&lt;/p&gt;
&lt;p&gt;As for code behind on the was-panel-now-userControl, you can either put it in the UserControl, or you can simply pass through the relevant events to the page by registering your own events for the new UserControl.&lt;/p&gt;
&lt;p&gt;No, it&amp;#39;s not the simplest solution, but it&amp;#39;ll work.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1646115" width="1" height="1"&gt;</description></item><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#1612410</link><pubDate>Sat, 03 May 2008 18:02:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1612410</guid><dc:creator>Kalam</dc:creator><description>&lt;p&gt;I have migrated to .Net 2.0. There are some custom controls on the page including form and panel. This controls are mandatory for the page and form. Now while I want to implement ad ajax withih the page I get this error. How to deal with ajax and custom control in VS 2005. Any suggestion will be appriciated.&lt;/p&gt;
&lt;p&gt;Please help&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1612410" width="1" height="1"&gt;</description></item><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#1590933</link><pubDate>Wed, 16 Apr 2008 18:13:55 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1590933</guid><dc:creator>Kominsky</dc:creator><description>&lt;p&gt;Well, as som have said, there&amp;#39;s a lot of complaining about this issue, but I can&amp;#39;t see solutions, plx! if someone has a solution, post it here, I really need it, and well, I&amp;#39;m still lookin&amp;#39; for it, so if I get it, I&amp;#39;ll post it here for sure.&lt;/p&gt;
&lt;p&gt;My problem is:&lt;/p&gt;
&lt;p&gt;aspx-contains the follow:&lt;/p&gt;
&lt;p&gt;scriptManager1&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;updatePanel1&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ascx1{updatePanel2[ascx2]}&lt;/p&gt;
&lt;p&gt;when I try to update updatePanel2, I got that error...&lt;/p&gt;
&lt;p&gt;By the way, my ascx 1 and ascx2 are loaded in the Page_Load cuz they are dynamic too...&lt;/p&gt;
&lt;p&gt;PLX! HELP!&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1590933" width="1" height="1"&gt;</description></item><item><title>Printing Multiple Tabs on one screen and UpdatePanel issue</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#1581765</link><pubDate>Thu, 10 Apr 2008 21:52:03 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1581765</guid><dc:creator>ASP.NET AJAX Forum Posts</dc:creator><description>&lt;p&gt;OK. I&amp;amp;#39;ve been working on this for 2 days, and scouring the forums for answers. I hve found many and&lt;/p&gt;
&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1581765" width="1" height="1"&gt;</description></item><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#1576271</link><pubDate>Mon, 07 Apr 2008 08:19:08 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1576271</guid><dc:creator>Luis Abreu</dc:creator><description>&lt;p&gt;Hello.&lt;/p&gt;
&lt;p&gt;yeah, the web forms model has some gotchas....&lt;/p&gt;
&lt;p&gt;but do notice that you can still add the UpdatePanel during the load event. what you cannot do is add/remove/add again after the event i&amp;#39;ve mentioned...the problem I&amp;#39;m describing happens because there are some cases where a control (which internally contains an UpdatePanel) is initially added to an existing control, then removed and then added again to another controls&amp;#39;s collection. if you do this, then be sure to do it until the preinit event. &lt;/p&gt;
&lt;p&gt;If you&amp;#39;re just adding a control to the page (and you&amp;#39;re nov removing it/adding it to another place later) you should be able to do it until the end of the load event...&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1576271" width="1" height="1"&gt;</description></item><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#1575735</link><pubDate>Sun, 06 Apr 2008 23:49:18 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1575735</guid><dc:creator>Serializer</dc:creator><description>&lt;p&gt;Yet another example of how broken ASP.NET is.&lt;/p&gt;
&lt;p&gt;Why design this great component model, yet not actually build in the flexibility to use it properly?&lt;/p&gt;
&lt;p&gt;It makes building web applications ultimately take about 100x as long, rather than saving time as it&amp;#39;s supposed to - since I seem to spend all my time figuring out how to work around ridiculous inflexibilities like this.&lt;/p&gt;
&lt;p&gt;I can&amp;#39;t use the Page_PreInit event to insert my user control containing the update panel - because Page_PreInit has fired *way* before my other nested controls are ready to set themselves up.&lt;/p&gt;
&lt;p&gt;Microsoft recommend that dynamically-added controls should be added in the Load method. This dynamically added control contains a templated control, which in turn instances a further user control within itself - sometimes this control will also contain an UpdatePanel. I simply can&amp;#39;t do this at PreInit - the other page controls that I need to insert into aren&amp;#39;t available at this time.&lt;/p&gt;
&lt;p&gt;Don&amp;#39;t know what to do but somehow I will kludge this mess, then wait for MVC toolkit to drop so I can start building things *properly*.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1575735" width="1" height="1"&gt;</description></item><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#1557534</link><pubDate>Thu, 27 Mar 2008 20:32:37 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1557534</guid><dc:creator>Goldfinger</dc:creator><description>&lt;p&gt;FOR GOD.... WRITE THE DAMN SOLUTION&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1557534" width="1" height="1"&gt;</description></item><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#1212778</link><pubDate>Mon, 24 Sep 2007 12:20:35 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1212778</guid><dc:creator>bakuuu</dc:creator><description>&lt;p&gt;Great, but I have an another problem.&lt;/p&gt;
&lt;p&gt;I have been trying to set programatically visible and unvisible of some Controls in my WebPage. On this Controls there are UpdatePanels. &lt;/p&gt;
&lt;p&gt;On each control - one UpdatePanel. &lt;/p&gt;
&lt;p&gt; I have to set visible = true/false in &amp;quot;Page_PreInit&amp;quot; method, it works on single test site, but...&lt;/p&gt;
&lt;p&gt;In my project I have a MasterPage, and in method Page_PreInit a reference to my control is null, so I can't change visible, and masterpage has no PreInit method. &lt;/p&gt;
&lt;p&gt;How to solve it ? &amp;nbsp;Maybe you know some other solution to dynamic hide controls with updatePanel in it.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1212778" width="1" height="1"&gt;</description></item><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#1191135</link><pubDate>Thu, 13 Sep 2007 12:01:21 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1191135</guid><dc:creator>Interesting</dc:creator><description>&lt;p&gt;If you mo-fo's don't know the answer, just say so..!&lt;/p&gt;
&lt;p&gt;Some of us would actually appreciate the help.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1191135" width="1" height="1"&gt;</description></item><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#1069137</link><pubDate>Sun, 29 Jul 2007 05:31:37 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1069137</guid><dc:creator>Iannis</dc:creator><description>&lt;p&gt;Interesting...&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1069137" width="1" height="1"&gt;</description></item><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#1064595</link><pubDate>Sat, 28 Jul 2007 11:05:54 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1064595</guid><dc:creator>Mamadshah</dc:creator><description>&lt;p&gt;interesting&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1064595" width="1" height="1"&gt;</description></item><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#975090</link><pubDate>Wed, 20 Jun 2007 06:50:53 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:975090</guid><dc:creator>Odysseas</dc:creator><description>&lt;p&gt;interesting&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=975090" width="1" height="1"&gt;</description></item><item><title>re: Adding/removing UpdatePanels dynamicaly from a page</title><link>http://msmvps.com/blogs/luisabreu/archive/2006/11/16/adding-removing-updatepanels-dynamicaly-from-a-page.aspx#973195</link><pubDate>Tue, 19 Jun 2007 11:23:47 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:973195</guid><dc:creator>Kymon</dc:creator><description>&lt;p&gt;Interesting...&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=973195" width="1" height="1"&gt;</description></item></channel></rss>