<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>[How Do I:] Use the ASP.NET AJAX DynamicPopulate Extender?</title><link>http://asp.net</link><pubDate>Wed, 06 May 2009 02:09:12 GMT</pubDate><generator>umbraco</generator><description>Comments for [How Do I:] Use the ASP.NET AJAX DynamicPopulate Extender?</description><language>en</language><atom:link href="http://asp.net/rss/comments/33566" rel="self" type="application/rss+xml" /><item><title>Comment Posted by ajaykaushik</title><link>http://asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-dynamicpopulate-extender</link><pubDate>Mon, 12 May 2008 11:53:41 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-00000000871</guid><description><![CDATA[ <p>Hi,</p> <p>I have been dynamic populate extender and its working in IE. But when i run it in Firefox it doesn&#39;t work. I get &quot;Web Service call failed: 500&quot; error. In IE its been working. I have used mostly the code available in tutorial only change is that i had to specify behaviorid to get it working.</p> <p>Rest is pretty similar to Tutorial code. </p> <p>Here is the code that i am using</p> <p>&lt;script type=&quot;text/javascript&quot; language=&quot;javascript&quot;&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;function showSellerName(value){</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;if (value != &#39;&#39;){</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;var behavior = $find(&#39;dp1&#39;);</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;if(behavior){</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;behavior.populate(value);</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;}</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;}</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;}</p> <p>&lt;/script&gt;</p> <p>&lt;asp:TextBox ID=&quot;txtSellerId&quot; runat=&quot;server&quot; MaxLength=&quot;12&quot; Width=&quot;100px&quot; onfocusout=&quot;showSellerName(this.value)&quot;&gt;&lt;/asp:TextBox&gt;</p> <p>&lt;ajaxToolkit:DynamicPopulateExtender ID=&quot;dp1&quot; runat=&quot;server&quot; ServiceMethod=&quot;GetSponsorName&quot; TargetControlID=&quot;pnlSponsorName&quot; PopulateTriggerControlID=&quot;txtSellerId&quot; CacheDynamicResults=&quot;true&quot; BehaviorID=&quot;dp1&quot; UpdatingCssClass=&quot;dynamicPopulate_Updating&quot; &gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;/ajaxToolkit:DynamicPopulateExtender&gt;</p> <p>Please advise me what should i do to get it working in firefox as well.</p> <p>Thanks.</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/ajaykaushik.jpg?forceidenticon=false&amp;dt=635048507400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by rjv_rnjn</title><link>http://asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-dynamicpopulate-extender</link><pubDate>Tue, 22 Jul 2008 13:51:16 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-00000000872</guid><description><![CDATA[ <p>A sample code for achieving this in a drop-down list would be nice. As the value required to bind the drop down is a data table and not a string (in almost all cases). Currently when I wire the javascript method with the OnSelectedIndexChanged method of drop down list the web service method doesn&#39;t fire up (actually it doesn&#39;t compile at all). Any help would be great.</p> <p>Thanks.</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/rjv_rnjn.jpg?forceidenticon=false&amp;dt=635048507400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by fsteveb</title><link>http://asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-dynamicpopulate-extender</link><pubDate>Tue, 05 Aug 2008 14:36:24 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-00000000878</guid><description><![CDATA[ <p>I have been trying to use the ajaxToolkit:ModalPopupExtender to popup a modal window showing info when a link in a datagrid is clicked. </p> <p> &#160; &#160; &#160; &#160; &#160; &#160;&lt;asp:GridView ID=&quot;gvs&quot; runat=&quot;server&quot;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;Columns&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;asp:TemplateField&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &lt;ItemTemplate&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;asp:LinkButton ID=&quot;LinkButton&quot; runat=&quot;server&quot; Text=&quot;Comments&quot; /&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;ajaxToolkit:ModalPopupExtender ID=&quot;ModalPopupExtender&quot; runat=&quot;server&quot;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;TargetControlID=&quot;LinkButton&quot; PopupControlID=&quot;Panel2&quot; OkControlID=&quot;Button1&quot;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;BackgroundCssClass=&quot;modalBackground&quot; DynamicControlID=&quot;lblComments&quot;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;DynamicContextKey=&#39;&lt;%# Eval(&quot;Comments&quot;) %&gt;&#39; DynamicServiceMethod=&quot;GetContent&quot; /&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;/ItemTemplate&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;HeaderTemplate&gt;Comments&lt;/HeaderTemplate&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;/asp:TemplateField&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;/Columns&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;&lt;/asp:GridView&gt;</p> <p> &#160; &#160; &#160; &#160;&lt;/div&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;&lt;br /&gt;</p> <p> &#160; &lt;%-- All ModalPopups share the same popup --%&gt;</p> <p> &#160; &#160;&lt;asp:Panel ID=&quot;Panel2&quot; runat=&quot;server&quot; CssClass=&quot;popup&quot; style=&quot;display:none;&quot;&gt;</p> <p> &#160; &#160; &#160;<p>Comments: &lt;asp:Label ID=&quot;lblComments&quot; runat=&quot;server&quot; /&gt; </p></p> <p> &#160; &#160; &#160;<p>&lt;asp:Button ID=&quot;Button1&quot; runat=&quot;server&quot; Text=&quot;OK&quot; /&gt;</p></p> <p> &#160; &#160;&lt;/asp:Panel&gt;</p> <p>I placed the method in the codebehind which looks like this.</p> <p> &#160; &#160;[System.Web.Services.WebMethod, System.Web.Script.Services.ScriptMethod]</p> <p> &#160; &#160;public string GetContent(string contextKey)</p> <p> &#160; &#160;{</p> <p> &#160; &#160; &#160; &#160;// Create a random color</p> <p> &#160; &#160; &#160; &#160;string color = (new Random()).Next(0xffffff).ToString(&quot;x6&quot;);</p> <p> &#160; &#160; &#160; &#160;// Use the style specified by the page author</p> <p> &#160; &#160; &#160; &#160;string style = contextKey;</p> <p> &#160; &#160; &#160; &#160;// Display the current time</p> <p> &#160; &#160; &#160; &#160;string time = DateTime.Now.ToLongTimeString();</p> <p> &#160; &#160; &#160; &#160;// Compose the content to return</p> <p> &#160; &#160; &#160; &#160;return &quot;&lt;span style=&#39;color:#&quot; + color + &quot;; &#39;&gt;&quot; + time + &quot;: &quot; + contextKey + &quot;&lt;/span&gt; &quot;;</p> <p> &#160; &#160;}</p> <p>When I click on the link I get the modal popup but the message is &quot;Comments: Web Service call failed: 500&quot;</p> <p>Any idea why I am not able to call the webmethod?</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/fsteveb.jpg?forceidenticon=false&amp;dt=635048507400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by cv_vikram</title><link>http://asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-dynamicpopulate-extender</link><pubDate>Wed, 06 Aug 2008 13:24:40 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-00000000879</guid><description><![CDATA[ <p>It is simple and good.</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/cv_vikram.jpg?forceidenticon=false&amp;dt=635048507400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by Roc1</title><link>http://asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-dynamicpopulate-extender</link><pubDate>Fri, 15 Aug 2008 10:50:26 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-00000000880</guid><description><![CDATA[ <p>&gt;rjv_rnjn : On July 22, 2008 1:51 PM said:</p> <p>&gt;A sample code for achieving this in a drop-down list &#160;&gt;would be nice.</p> <p>Markup:</p> <p>-----------------------------------------</p> <p>&lt;%@ Page Language=&quot;C#&quot; AutoEventWireup=&quot;true&quot; CodeFile=&quot;Default.aspx.cs&quot; Inherits=&quot;_Default&quot; %&gt;</p> <p>&lt;%@ Register Assembly=&quot;AjaxControlToolkit, Version=3.0.20229.20843, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e&quot; </p> <p>Namespace=&quot;AjaxControlToolkit&quot; TagPrefix=&quot;ajaxToolkit&quot; %&gt;</p> <p>&lt;head id=&quot;Head1&quot; runat=&quot;server&quot;&gt;</p> <p> &#160; &#160;&lt;title&gt;Untitled Page&lt;/title&gt;</p> <p> &#160; &#160;&lt;style type=&quot;text/css&quot;&gt;</p> <p> &#160; &#160; &#160; &#160;.dynamicPopulate_Normal</p> <p> &#160; &#160; &#160; &#160;{</p> <p>  &#160; &#160; &#160; &#160;border: 1px inset #000080;</p> <p>  &#160; &#160; &#160; &#160;padding: 2px;</p> <p>  &#160; &#160; &#160; &#160;text-align: center;</p> <p>  &#160; &#160; &#160; &#160;height: 1.5em;</p> <p>  &#160; &#160; &#160; &#160;margin: 5px;</p> <p>  &#160; &#160; &#160; &#160;width: 400px;</p> <p> &#160; &#160; &#160; &#160;}</p> <p> &#160; &#160; &#160; &#160;.dynamicPopulate_Updating </p> <p> &#160; &#160; &#160; &#160;{</p> <p>  &#160; &#160; &#160; &#160;background-image:url(images/loading.gif);</p> <p>  &#160; &#160; &#160; &#160;background-repeat:no-repeat;</p> <p>  &#160; &#160; &#160; &#160;border: 1px inset #000080;</p> <p>  &#160; &#160; &#160; &#160;text-align:center;</p> <p>  &#160; &#160; &#160; &#160;height:1.5em;</p> <p>  &#160; &#160; &#160; &#160;margin:5px;</p> <p>  &#160; &#160; &#160; &#160;width:400px;</p> <p> &#160; &#160; &#160; &#160;}</p> <p> &#160; &#160;&lt;/style&gt;</p> <p> &#160; &#160;&lt;script type=&quot;text/javascript&quot;&gt;</p> <p> &#160; &#160; &#160; &#160;function updateSelection(value) {</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;var behavior = $find(&#39;DynamicPopulateExtender1&#39;);</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;if (behavior) {</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;behavior.populate(value);</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;}</p> <p> &#160; &#160; &#160; &#160;}</p> <p> &#160; &#160;&lt;/script&gt;</p> <p>&lt;/head&gt;</p> <p>&lt;body&gt;</p> <p> &#160; &#160;&lt;form id=&quot;form1&quot; runat=&quot;server&quot;&gt;</p> <p> &#160; &#160;&lt;asp:ScriptManager ID=&quot;ScriptManager1&quot; runat=&quot;server&quot; /&gt;</p> <p> &#160; &#160;Select your favorite vegetable:</p> <p> &#160; &#160;&lt;asp:DropDownList ID=&quot;ddlVegetables&quot; runat=&quot;server&quot;&gt;</p> <p> &#160; &#160; &#160; &#160;&lt;asp:ListItem&gt;Spinach&lt;/asp:ListItem&gt;</p> <p> &#160; &#160; &#160; &#160;&lt;asp:ListItem&gt;Cucumber&lt;/asp:ListItem&gt;</p> <p> &#160; &#160; &#160; &#160;&lt;asp:ListItem&gt;Tomato&lt;/asp:ListItem&gt;</p> <p> &#160; &#160; &#160; &#160;&lt;asp:ListItem&gt;Eggplant&lt;/asp:ListItem&gt;</p> <p> &#160; &#160;&lt;/asp:DropDownList&gt;</p> <p> &#160; &#160;&lt;br /&gt;</p> <p> &#160; &#160;&lt;asp:Panel ID=&quot;Panel1&quot; runat=&quot;server&quot; CssClass=&quot;dynamicPopulate_Normal&quot;&gt;</p> <p> &#160; &#160;&lt;/asp:Panel&gt;</p> <p> &#160; &#160;&lt;ajaxToolkit:dynamicpopulateextender id=&quot;DynamicPopulateExtender1&quot; runat=&quot;server&quot;</p> <p> &#160; &#160; &#160; &#160;targetcontrolid=&quot;Panel1&quot; servicemethod=&quot;Refresh&quot; updatingcssclass=&quot;dynamicPopulate_Updating&quot;&gt;</p> <p> &#160; &#160; &#160; &#160;&lt;/ajaxToolkit:dynamicpopulateextender&gt;</p> <p> &#160; &#160;&lt;/form&gt;</p> <p>&lt;/body&gt;</p> <p>&lt;/html&gt;</p> <p>Code-Behind:</p> <p>--------------------------------------------</p> <p>using System;</p> <p>public partial class _Default : System.Web.UI.Page </p> <p>{</p> <p> &#160; &#160;protected void Page_Load(object sender, EventArgs e)</p> <p> &#160; &#160;{</p> <p> &#160; &#160; &#160; &#160;ddlVegetables.Attributes.Add(&quot;OnChange&quot;, &quot;updateSelection(this.value);&quot;);</p> <p> &#160; &#160;}</p> <p> &#160; &#160;[System.Web.Services.WebMethod()]</p> <p> &#160; &#160;[System.Web.Script.Services.ScriptMethod()]</p> <p> &#160; &#160;public static string Refresh(string contextKey)</p> <p> &#160; &#160;{</p> <p> &#160; &#160; &#160; &#160;System.Threading.Thread.Sleep(1000);</p> <p> &#160; &#160; &#160; &#160;var text = string.Format(&quot;You selected: {0}&quot;, contextKey);</p> <p> &#160; &#160; &#160; &#160;return string.Format(&quot;&lt;span style=&#39;font-family:courier new;font-weight:bold;&#39;&gt;{0}&lt;/span&gt;&quot;, text);</p> <p> &#160; &#160;}</p> <p>}</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/Roc1.jpg?forceidenticon=false&amp;dt=635048507400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by NewDays</title><link>http://asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-dynamicpopulate-extender</link><pubDate>Thu, 28 Aug 2008 13:21:31 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-00000000873</guid><description><![CDATA[ <p>I am trying to update the imageurl that the Image2 control looks at. &#160;I keep getting inner html problems...meaning I didn&#39;t write the dynamic page that keeps popping up. &#160;Please help.</p> <p>&lt;%@ Page Language=&quot;C#&quot; AutoEventWireup=&quot;true&quot; CodeFile=&quot;Default2.aspx.cs&quot; Inherits=&quot;Default2&quot; %&gt;</p> <p>&lt;%@ Register assembly=&quot;AjaxControlToolkit&quot; namespace=&quot;AjaxControlToolkit&quot; tagprefix=&quot;cc1&quot; %&gt;</p> <p>&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;&lt;a rel=&quot;nofollow&quot; target=&quot;_new&quot; href=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;&quot;&gt;www.w3.org/.../xhtml1-transitional.dtd&quot;&gt;&lt;/a&gt;</p> <p>&lt;script runat=&quot;server&quot;&gt;</p> <p> &#160; &#160;[System.Web.Services.WebMethod()]</p> <p> &#160; &#160;[System.Web.Script.Services.ScriptMethod()]</p> <p> &#160; &#160;public static string GetDynamicContent(string contextKey)</p> <p>{</p> <p> &#160; &#160; &#160; &#160;System.Threading.Thread.Sleep(500);</p> <p> &#160; &#160; &#160; &#160;string img_hdr = &quot;ImageUrl = &quot;;</p> <p> &#160; &#160; &#160; &#160;string img_lctn = &quot;&quot;;</p> <p> &#160; &#160; &#160; &#160;string final = &quot;&quot;;</p> <p> &#160; &#160; &#160; &#160;if (contextKey == &quot;y&quot;) </p> <p> &#160; &#160; &#160; &#160;{</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;img_lctn = &quot;~/Indicator Light/yellow.bmp&quot;;</p> <p> &#160; &#160; &#160; &#160;}</p> <p> &#160; &#160; &#160; &#160;else if (contextKey==&quot;g&quot;)</p> <p> &#160; &#160; &#160; &#160;{</p> <p> &#160; &#160; &#160; &#160; &#160; img_lctn = &quot;~/Indicator Light/green.bmp&quot;;</p> <p> &#160; &#160; &#160; &#160;}</p> <p> &#160; &#160; &#160; &#160;else if (contextKey == &quot;b&quot;)</p> <p> &#160; &#160; &#160; &#160;{</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;img_lctn = &quot;~/Indicator Light/blue.bmp&quot;;</p> <p> &#160; &#160; &#160; &#160;}</p> <p> &#160; &#160; &#160; &#160;else</p> <p> &#160; &#160; &#160; &#160;{</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;img_lctn = &quot;~/Indicator Light/red.bmp&quot;;</p> <p> &#160; &#160; &#160; &#160;}</p> <p> &#160; &#160; &#160; &#160;final = img_hdr + img_lctn;</p> <p> &#160; &#160; &#160; &#160;return final;</p> <p>}</p> <p> &#160; &#160;protected void cmdHome_Click(object sender, EventArgs e)</p> <p> &#160; &#160;{</p> <p> &#160; &#160; &#160; &#160;MultiView1.ActiveViewIndex = 0;</p> <p> &#160; &#160;}</p> <p> &#160; &#160;protected void cmdEval_Click(object sender, EventArgs e)</p> <p> &#160; &#160;{</p> <p> &#160; &#160; &#160; &#160;MultiView1.ActiveViewIndex = 1;</p> <p> &#160; &#160;}</p> <p> &#160; &#160;protected void cmdPyramids_Click(object sender, EventArgs e)</p> <p> &#160; &#160;{</p> <p> &#160; &#160; &#160; &#160;MultiView1.ActiveViewIndex = 2;</p> <p> &#160; &#160;}</p> <p>&lt;/script&gt;</p> <p>&lt;html xmlns=&quot;&lt;a rel=&quot;nofollow&quot; target=&quot;_new&quot; href=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&quot;&gt;www.w3.org/.../xhtml&quot;&gt;&lt;/a&gt;</p> <p>&lt;head runat=&quot;server&quot;&gt;</p> <p> &#160; &#160;&lt;title&gt;&lt;/title&gt;</p> <p> &#160; &#160;&lt;link href=&quot;StyleSheet.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt; </p> <p>&lt;/head&gt;</p> <p>&lt;body&gt;</p> <p> &#160; &#160;&lt;form id=&quot;form1&quot; runat=&quot;server&quot;&gt;</p> <p> &#160; &#160;&lt;asp:scriptmanager ID=&quot;Scriptmanager1&quot; runat=&quot;server&quot; /&gt;</p> <p> &#160; &#160;&lt;script type=&quot;text/javascript&quot;&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;function updateDateKey(value) {</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;var behavior = $find(&#39;Image2_DynamicPopulateExtender&#39;);</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;if (behavior) {</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;behavior.populate(value);</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;}</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;}</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;Sys.Application.add_load(function(){updateDateKey(&#39;r&#39;);});</p> <p> &#160; &#160;&lt;/script&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;style=&quot;z-index: 1; left: 700px; top: 124px; position: absolute; height: 378px; width: 405px&quot;&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;asp:Panel ID=&quot;Panel10&quot; runat=&quot;server&quot; style=&quot;position: relative; top: 55px; left: 8px; height: 313px; width: 344px&quot;&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;asp:Image ID=&quot;Image2&quot; runat=&quot;server&quot; Height=&quot;46px&quot; Width=&quot;49px&quot; CssClass=&quot;dynamicPopulate_Normal&quot; </p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;ImageUrl=&quot;~/Indicator Light/red.bmp&quot; /&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;cc1:DynamicPopulateExtender ID=&quot;Image2_DynamicPopulateExtender&quot; runat=&quot;server&quot; </p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;Enabled=&quot;True&quot; PopulateTriggerControlID=&quot;&quot; &#160;ServiceMethod=&quot;GetDynamicContent&quot; </p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;TargetControlID=&quot;Image2&quot; UpdatingCssClass=&quot;dynamicPopulate_Updating&quot;&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;/cc1:DynamicPopulateExtender&gt;</p> <p>&lt;%-- &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;asp:RadioButtonList ID=&quot;RadioButtonList1&quot; runat=&quot;server&quot; </p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;style=&quot;position: absolute; top: 7px; left: 124px; height: 82px; width: 214px&quot; </p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;onselectedindexchanged=&quot;RadioButtonList1_SelectedIndexChang ed&quot; </p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;AutoPostBack=&quot;True&quot;&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;asp:ListItem&gt;Not meeting current obligations&lt;/asp:ListItem&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;asp:ListItem&gt;Turning away new work&lt;/asp:ListItem&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;asp:ListItem&gt;Able to accept new work&lt;/asp:ListItem&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;asp:ListItem&gt;Excess capacity&lt;/asp:ListItem&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;/asp:RadioButtonList&gt;--%&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;asp:Label ID=&quot;Label13&quot; runat=&quot;server&quot; Text=&quot;&quot;&gt;&lt;/asp:Label&gt;</p> <p> &#160; &#160; &#160; &#160;&lt;div&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;&lt;label for=&quot;r0&quot;&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;input id=&quot;r0&quot; checked=&quot;checked&quot; name=&quot;rbFormat&quot; onclick=&quot;updateDateKey(this.value);&quot;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;type=&quot;radio&quot; value=&#39;r&#39; /&gt;R)Not meeting current obligations&lt;/label&gt;&lt;br /&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;&lt;label for=&quot;r1&quot;&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;input id=&quot;r1&quot; name=&quot;rbFormat&quot; onclick=&quot;updateDateKey(this.value);&quot; type=&quot;radio&quot;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;value=&#39;y&#39; /&gt;Y)Turning away new work&lt;/label&gt;&lt;br /&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;&lt;label for=&quot;r2&quot;&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;input id=&quot;r2&quot; name=&quot;rbFormat&quot; onclick=&quot;updateDateKey(this.value);&quot; type=&quot;radio&quot;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;value=&#39;g&#39; /&gt;G)Ready to accept future work&lt;/label&gt;&lt;br /&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;&lt;label for=&quot;r3&quot;&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;input id=&quot;r3&quot; name=&quot;rbFormat&quot; onclick=&quot;updateDateKey(this.value);&quot; type=&quot;radio&quot;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;value=&#39;b&#39; /&gt;B)Excess acity&lt;/label&gt;&lt;br /&gt;</p> <p> &#160; &#160; &#160; &#160;&lt;/div&gt;</p> <p> &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;/asp:Panel&gt;</p> <p>Sorry about the poor indenting&#39;I have been playing with the functionality and not the appearance.</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/NewDays.jpg?forceidenticon=false&amp;dt=635048507400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by ak_friendz</title><link>http://asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-dynamicpopulate-extender</link><pubDate>Sun, 05 Oct 2008 12:22:12 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-00000000874</guid><description><![CDATA[ <p>Simple and easy to implement....</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/ak_friendz.jpg?forceidenticon=false&amp;dt=635048507400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by som nath shukla</title><link>http://asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-dynamicpopulate-extender</link><pubDate>Mon, 27 Oct 2008 08:00:01 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-00000000875</guid><description><![CDATA[ <p>I am using the same dropdown and dynamic extender control. Every thing is fine when i am using mouse to change the selection in Dropdownlist. But when i use Tab and up/down key change the selection of dropdownlist. Dynamic extender event is not firing.</p> <p>Plz reply ASAP.</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/som%20nath%20shukla.jpg?forceidenticon=false&amp;dt=635048507400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by djibril_chimere_DIAW</title><link>http://asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-dynamicpopulate-extender</link><pubDate>Tue, 30 Dec 2008 04:49:48 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-00000000876</guid><description><![CDATA[ <p>Thanks! J&#235;r&#235;j&#235;f!</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/djibril_chimere_DIAW.jpg?forceidenticon=false&amp;dt=635048507400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by bgates1970</title><link>http://asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-dynamicpopulate-extender</link><pubDate>Fri, 16 Jan 2009 16:28:44 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-00000000877</guid><description><![CDATA[ <p>Any ideas on how to use this inside a repeater control? &#160;For example, i have a repeater control that shows a list of products. &#160;when a user clicks on the link button i want to display underneath the link some dynamic text. </p> <p>I can get it to work great with a Modal Popup but I need a hovermenu to display underneath instead.</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/bgates1970.jpg?forceidenticon=false&amp;dt=635048507400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by haithemara</title><link>http://asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-dynamicpopulate-extender</link><pubDate>Wed, 06 May 2009 02:09:12 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-00000000881</guid><description><![CDATA[ <p>Nice video . Thank you Joe. </p><p>I do have a question. </p><p>The definition of the GetHtml function is different in both the populateExtenderControl and the service call. In other words, in the control you specify that the ServiceMethod=&quot;GetHtml&quot; with no parameters and in the service call you specify that public static string GetHtml(string contextKey) accept a parameter. Hence, i have to assume that control default behavior is to accept the contextkey, but this property is ommitted. </p><p>Can you please explain this ?</p><p>thank you.</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/haithemara.jpg?forceidenticon=false&amp;dt=635048507400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item></channel></rss>