<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://serverx.esri.com/ESRIBlogs/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>Using ASP.NET AJAX with the Web ADF</title><link>http://serverx.esri.com/ESRIBlogs/blogs/arcgisserver/archive/2007/04/02/Using-ASP.NET-AJAX-with-the-Web-ADF.aspx</link><description>Bryan Baker of the .NET SDK team wrote this great article on integration ASP.NET AJAX with the Web ADF. Microsoft&amp;#39;s new ASP.NET AJAX enables developers to refresh portions of a Web page in a relatively simple way. To enable a control to use AJAX,</description><dc:language>en</dc:language><generator>CommunityServer 2.1 (Build: 60809.935)</generator><item><title>re: Using ASP.NET AJAX with the Web ADF</title><link>http://serverx.esri.com/ESRIBlogs/blogs/arcgisserver/archive/2007/04/02/Using-ASP.NET-AJAX-with-the-Web-ADF.aspx#168</link><pubDate>Mon, 02 Apr 2007 22:07:40 GMT</pubDate><guid isPermaLink="false">b60b3f0a-e2bd-4be5-8a18-822c697649ab:168</guid><dc:creator>David</dc:creator><description>We have noticed that if you place an OverView map control on the page and wire it up, all Ajax partial post-backs take a very long time to occur (15+ seconds).  This only occurs with the OverView map control.
Plus, the partial postbacks really begin to slow down anyway once you add a lot of controls, in our case ESRI ADF controls to the page outside of UpdatePanels.</description></item><item><title>Using ASP.NET AJAX with the Web ADF via ScriptManager</title><link>http://serverx.esri.com/ESRIBlogs/blogs/arcgisserver/archive/2007/04/02/Using-ASP.NET-AJAX-with-the-Web-ADF.aspx#170</link><pubDate>Wed, 04 Apr 2007 04:01:27 GMT</pubDate><guid isPermaLink="false">b60b3f0a-e2bd-4be5-8a18-822c697649ab:170</guid><dc:creator>Community Blogs</dc:creator><description>&lt;p&gt;On the ArcGIS server development blog you&amp;amp;rsquo;ll find a much waited post; how to use ASP.NET AJAX and&lt;/p&gt;
</description></item><item><title>Updating associated Web ADF controls</title><link>http://serverx.esri.com/ESRIBlogs/blogs/arcgisserver/archive/2007/04/02/Using-ASP.NET-AJAX-with-the-Web-ADF.aspx#171</link><pubDate>Wed, 04 Apr 2007 17:47:58 GMT</pubDate><guid isPermaLink="false">b60b3f0a-e2bd-4be5-8a18-822c697649ab:171</guid><dc:creator>Bryan Baker</dc:creator><description>&lt;p&gt;A follow-up to my post: in the AJAX partial postback, you may need to tell other Web ADF controls to synch up with the Map. For instance, if you have an OverviewMap control that displays the Map's extent, you need to refresh the OverviewMap in the AJAX partial postback. This is easy to do: use the .Refresh command, and then copy the control's CallbackResults to the Map (the first line below is in the DropDownList2_SelectedIndexChanged method above):&lt;/p&gt;
&lt;p&gt;Map1.Extent = new_extent&lt;/p&gt;
&lt;p&gt;OverviewMap1.Refresh()&lt;/p&gt;
&lt;p&gt;Map1.CallbackResults.CopyFrom(OverviewMap1.CallbackResults)&lt;/p&gt;
&lt;p&gt;The same approach would apply to a Toc (table of contents) control.&lt;/p&gt;
</description></item><item><title>re: Using ASP.NET AJAX with the Web ADF</title><link>http://serverx.esri.com/ESRIBlogs/blogs/arcgisserver/archive/2007/04/02/Using-ASP.NET-AJAX-with-the-Web-ADF.aspx#172</link><pubDate>Wed, 04 Apr 2007 21:05:03 GMT</pubDate><guid isPermaLink="false">b60b3f0a-e2bd-4be5-8a18-822c697649ab:172</guid><dc:creator>Chuck Tilly</dc:creator><description>This is EXCELLENT material.  Thanks Bryan for writing this up.  We need more stuff like this, please.  

Now what I would really like to see is how to use the Map control as a trigger to update something in an Update Panel.  Example: a user selects features on a map and a grid in an update panel gets updated with the new corresponding data.

Thanks again Bryan.</description></item><item><title>re: Using ASP.NET AJAX with the Web ADF</title><link>http://serverx.esri.com/ESRIBlogs/blogs/arcgisserver/archive/2007/04/02/Using-ASP.NET-AJAX-with-the-Web-ADF.aspx#173</link><pubDate>Thu, 05 Apr 2007 15:41:44 GMT</pubDate><guid isPermaLink="false">b60b3f0a-e2bd-4be5-8a18-822c697649ab:173</guid><dc:creator>jxn</dc:creator><description>Im with Chuck-  Its great to see MS Ajax components updating the map, but to really use MS Ajax we need to know how to make the map control and other ADF controls update MS Ajax controls also.  This is a great start though!

Very interesting about the Overview Map causing problems- that seems like a big issue!

Thank you Bryan!</description></item><item><title>re: Using ASP.NET AJAX with the Web ADF</title><link>http://serverx.esri.com/ESRIBlogs/blogs/arcgisserver/archive/2007/04/02/Using-ASP.NET-AJAX-with-the-Web-ADF.aspx#174</link><pubDate>Sun, 08 Apr 2007 05:23:57 GMT</pubDate><guid isPermaLink="false">b60b3f0a-e2bd-4be5-8a18-822c697649ab:174</guid><dc:creator>AbdulMannan</dc:creator><description>This is really cool!!....Opens Up many gates of such developments!!</description></item><item><title>re: Using ASP.NET AJAX with the Web ADF</title><link>http://serverx.esri.com/ESRIBlogs/blogs/arcgisserver/archive/2007/04/02/Using-ASP.NET-AJAX-with-the-Web-ADF.aspx#175</link><pubDate>Thu, 12 Apr 2007 01:48:04 GMT</pubDate><guid isPermaLink="false">b60b3f0a-e2bd-4be5-8a18-822c697649ab:175</guid><dc:creator>MichalGasparovic</dc:creator><description>thank you for this tip. very interesting.</description></item><item><title>re: Using ASP.NET AJAX with the Web ADF</title><link>http://serverx.esri.com/ESRIBlogs/blogs/arcgisserver/archive/2007/04/02/Using-ASP.NET-AJAX-with-the-Web-ADF.aspx#176</link><pubDate>Thu, 12 Apr 2007 05:58:57 GMT</pubDate><guid isPermaLink="false">b60b3f0a-e2bd-4be5-8a18-822c697649ab:176</guid><dc:creator>Scott</dc:creator><description>This is a great sample application and is really appreciated.  Please showcase more material that demonstrations the use of the Web.ADF with AJAX or how about working with the ADF floating panel.  Thank you Bryan.</description></item><item><title>Ultram.</title><link>http://serverx.esri.com/ESRIBlogs/blogs/arcgisserver/archive/2007/04/02/Using-ASP.NET-AJAX-with-the-Web-ADF.aspx#214</link><pubDate>Sun, 13 Jul 2008 19:37:39 GMT</pubDate><guid isPermaLink="false">b60b3f0a-e2bd-4be5-8a18-822c697649ab:214</guid><dc:creator>Ultram.</dc:creator><description>&lt;p&gt;Ultram.&lt;/p&gt;
</description></item><item><title>What is ultram.</title><link>http://serverx.esri.com/ESRIBlogs/blogs/arcgisserver/archive/2007/04/02/Using-ASP.NET-AJAX-with-the-Web-ADF.aspx#215</link><pubDate>Tue, 15 Jul 2008 22:28:43 GMT</pubDate><guid isPermaLink="false">b60b3f0a-e2bd-4be5-8a18-822c697649ab:215</guid><dc:creator>Ultram.</dc:creator><description>&lt;p&gt;Ultram. Ultram er. Ultram er tablets. Can you buy ultram in mexico. Side effects of ultram.&lt;/p&gt;
</description></item><item><title>Buspar.</title><link>http://serverx.esri.com/ESRIBlogs/blogs/arcgisserver/archive/2007/04/02/Using-ASP.NET-AJAX-with-the-Web-ADF.aspx#216</link><pubDate>Wed, 30 Jul 2008 11:06:54 GMT</pubDate><guid isPermaLink="false">b60b3f0a-e2bd-4be5-8a18-822c697649ab:216</guid><dc:creator>Buspar.</dc:creator><description>&lt;p&gt;Buspar acohol. Buspar anxiety. Buspar.&lt;/p&gt;
</description></item></channel></rss>