<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - UpdateControls: UpdateHistory and AnimatedUpdatePanel</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Blogs/NikhilKothari/UpdateControls-UpdateHistory-and-AnimatedUpdatePanel/RSS"></atom:link>
	<image>
		<url>http://ecn.channel9.msdn.com/o9/previewImages/100/252058_100x75.jpg</url>
		<title>Channel 9 - UpdateControls: UpdateHistory and AnimatedUpdatePanel</title>
		<link></link>
	</image>
	<description>This video goes along with my blog post, 
http://www.nikhilk.net/UpdateControls.aspx&amp;nbsp;(which will be posted shortly).

Specifically, this video demonstrates two controls in action: UpdateHistory and
AnimatedUpdatePanel. Both work well with the UpdatePanel and partial rendering feature in ASP.NET AJAX.

UpdateHistory enables back button support. AnimatedUpdatePanel allows visually appealing subtle transitions when page content is updated. For more details, check out the blog post...

Nikhil</description>
	<link></link>
	<language>en</language>
	<pubDate>Sat, 25 May 2013 02:46:58 GMT</pubDate>
	<lastBuildDate>Sat, 25 May 2013 02:46:58 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: UpdateControls: UpdateHistory and AnimatedUpdatePanel</title>
		<description>
			<![CDATA[Please fix it so it will work with master pages <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /><p>posted by Cyonix</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/NikhilKothari/UpdateControls-UpdateHistory-and-AnimatedUpdatePanel#c633088119840000000</link>
		<pubDate>Tue, 06 Mar 2007 21:06:24 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/NikhilKothari/UpdateControls-UpdateHistory-and-AnimatedUpdatePanel#c633088119840000000</guid>
		<dc:creator>Cyonix</dc:creator>
	</item>
	<item>
		<title>Re: UpdateControls: UpdateHistory and AnimatedUpdatePanel</title>
		<description>
			<![CDATA[This screencast appears to have no audio. I tried to play it twice with the same results. The info contained seems like it would of interest if there were an audio track.<p>posted by Dmorgan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/NikhilKothari/UpdateControls-UpdateHistory-and-AnimatedUpdatePanel#c633089630450000000</link>
		<pubDate>Thu, 08 Mar 2007 15:04:05 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/NikhilKothari/UpdateControls-UpdateHistory-and-AnimatedUpdatePanel#c633089630450000000</guid>
		<dc:creator>Dmorgan</dc:creator>
	</item>
	<item>
		<title>Re: UpdateControls: UpdateHistory and AnimatedUpdatePanel</title>
		<description>
			<![CDATA[Really Cool.<br>
<br>
Does this just inherit from System.Web.UI.UpdatePanel?<br>
<p>posted by evanreiser</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/NikhilKothari/UpdateControls-UpdateHistory-and-AnimatedUpdatePanel#c633114877280000000</link>
		<pubDate>Fri, 06 Apr 2007 20:22:08 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/NikhilKothari/UpdateControls-UpdateHistory-and-AnimatedUpdatePanel#c633114877280000000</guid>
		<dc:creator>evanreiser</dc:creator>
	</item>
	<item>
		<title>Re: UpdateControls: UpdateHistory and AnimatedUpdatePanel</title>
		<description>
			<![CDATA[
<p>There is no audio for this video...<br>
<br>
I tried using the UpdateHistory control, but it didn't work.<br>
<br>
The e.EntryName object had an empty string value. <br>
<br>
I just had a simple default.aspx page and page2.aspx page with two controls. A textbox and Button on Default.aspx and page2.aspx had a textbox.<br>
<br>
When going to page2, the value was in the textbox. When going back to default.aspx (via the Back button in the browser), the form data value originally in this page was gone.<br>
<br>
See my below code:<br>
<br>
&lt;form id=&quot;form1&quot; runat=&quot;server&quot;&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;asp:ScriptManager ID=&quot;ScriptManager1&quot; runat=&quot;server&quot; /&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;nStuff:UpdateHistory ID=&quot;UpdateHistory1&quot; runat=&quot;server&quot; OnNavigate=&quot;OnUpdateHistoryNavigate&quot;&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/nStuff:UpdateHistory&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;nStuff:AnimatedUpdatePanel ID=&quot;AnimatedUpdatePanel1&quot; runat=&quot;server&quot; UpdateMode=&quot;Conditional&quot;&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;ContentTemplate&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;asp:TextBox ID=&quot;TextBox1&quot; runat=&quot;server&quot;&gt;&lt;/asp:TextBox&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;br /&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;asp:Button ID=&quot;Button1&quot; runat=&quot;server&quot; OnClick=&quot;Button1_Click&quot; Text=&quot;Button&quot; /&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/ContentTemplate&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/nStuff:AnimatedUpdatePanel&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;div&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;<br>
&nbsp;&nbsp;&nbsp; &lt;/form&gt;<br>
<br>
private Sub OnUpdateHistoryNavigate(ByVal sender As Object, ByVal e As HistoryEventArgs)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' Raised when the user navigates back/forward or<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' loads a bookmark to a specific view.</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' Use the history entry name to determine the<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' selected index and update the page.<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If String.IsNullOrEmpty(e.EntryName) = False Then<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TextBox1.Text = e.EntryName.ToString<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AnimatedUpdatePanel1.Update()</p>
<p>&nbsp;&nbsp;&nbsp; End Sub<br>
<br>
Another point... If you do help me to get it to work, wouldn't I have to run a similiar &quot;If&quot; statement for EACH control on the page in order to repopulate the data? If this is the case, it seems awfully arduous and tedious to do this. It probably won't be feasible
 with all the controls that can exist on a page.</p>
<p>posted by wsyeager36</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/NikhilKothari/UpdateControls-UpdateHistory-and-AnimatedUpdatePanel#c633364467360000000</link>
		<pubDate>Sun, 20 Jan 2008 17:25:36 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/NikhilKothari/UpdateControls-UpdateHistory-and-AnimatedUpdatePanel#c633364467360000000</guid>
		<dc:creator>wsyeager36</dc:creator>
	</item>
</channel>
</rss>