<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://code.msdn.microsoft.com/rss.xsl"?><rss version="2.0"><channel><title>RegClientControls</title><link>http://code.msdn.microsoft.com/RegClientControls/Project/ProjectRss.aspx</link><description>RegClientControls is a server control that interacts with Microsoft ASP.NET AJAX to register WebControls to a client side JavaScript object.      You can use this to easily work with WebControls in an ...</description><item><title>NEW POST: registerObject() problem</title><link>http://code.msdn.microsoft.com/RegClientControls/Thread/View.aspx?ThreadId=720</link><description>&lt;div class="wikidoc"&gt;
There always seems to be an extra item (of type function()) in the object arg to registerObject() call.&lt;br /&gt; &lt;br /&gt;So this code breaks:&lt;br /&gt; &lt;br /&gt;    registerObject: function(object) {&lt;br /&gt;        for (x in object) {&lt;br /&gt;                eval('this.' + object&lt;a href="http://code.msdn.microsoft.com/RegClientControls/Wiki/View.aspx?title=x"&gt;x&lt;/a&gt;.c + ' = $get(object&lt;a href="http://code.msdn.microsoft.com/RegClientControls/Wiki/View.aspx?title=x"&gt;x&lt;/a&gt;.s)');    //This fails on the last item in the list, but it is of type &amp;quot;function()&amp;quot;&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;I fixed it with the following:&lt;br /&gt; &lt;br /&gt;    registerObject: function(object) {&lt;br /&gt;        for (x in object) {&lt;br /&gt;            if (typeof object&lt;a href="http://code.msdn.microsoft.com/RegClientControls/Wiki/View.aspx?title=x"&gt;x&lt;/a&gt;.s != 'undefined') {&lt;br /&gt;                eval('this.' + object&lt;a href="http://code.msdn.microsoft.com/RegClientControls/Wiki/View.aspx?title=x"&gt;x&lt;/a&gt;.c + ' = $get(object&lt;a href="http://code.msdn.microsoft.com/RegClientControls/Wiki/View.aspx?title=x"&gt;x&lt;/a&gt;.s)');&lt;br /&gt;            }&lt;br /&gt;        }&lt;br /&gt; &lt;br /&gt;But wanted to see if anyone else was having that problem or had a different fix&lt;br /&gt; &lt;br /&gt;Config:FF3.01, .NET 3.5 SP1, and prototype.js&lt;br /&gt;
&lt;/div&gt;</description><author>slolife</author><pubDate>Sat, 13 Sep 2008 01:58:18 GMT</pubDate><guid isPermaLink="false">NEW POST: registerObject() problem 20080913A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://code.msdn.microsoft.com/RegClientControls/Wiki/View.aspx?title=Home&amp;version=5</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Resource Page Description&lt;/b&gt;&lt;br /&gt;RegClientControls is a server control that interacts with Microsoft ASP.NET AJAX to register WebControls to a client side JavaScript object.&lt;br /&gt;&lt;br /&gt;You can use this to easily work with WebControls in an external JavaScript file without having to manually do any kind of tricks like this. &amp;#60;&amp;#37;&amp;#61;TextBox1.ClientID&amp;#37;&amp;#62;&lt;br /&gt;
&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;To use this control, simply place it on your web page somewhere below the ScriptManager and set the ClientControls property to “All” and you’re done.&lt;br /&gt;Although this is the easiest way to set this control up, it is not recommended.&lt;br /&gt;You are better off leaving the ClientControls property set to “Marked” and pick and choose the controls you want to have registered to JavaScript.&lt;br /&gt;In the download section is a complete example with comments about the specific settings.&lt;br /&gt; &lt;br /&gt;For more information about this control, please see my blog post here: &lt;a href="http://weblogs.asp.net/joewrobel/archive/2008/02/19/clientid-problem-in-external-javascript-files-solved.aspx" class="externalLink"&gt;http://weblogs.asp.net/joewrobel/archive/2008/02/19/clientid-problem-in-external-javascript-files-solved.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt; &lt;br /&gt;&lt;img src="http://code.msdn.microsoft.com/Project/Download/FileDownload.aspx?ProjectName=RegClientControls&amp;amp;DownloadId=756" alt="RegClient.jpg" /&gt;&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>robolize</author><pubDate>Wed, 20 Feb 2008 22:46:45 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080220P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://code.msdn.microsoft.com/RegClientControls/Wiki/View.aspx?title=Home&amp;version=4</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Resource Page Description&lt;/b&gt;&lt;br /&gt;RegClientControls is a server control that interacts with Microsoft ASP.NET AJAX to register WebControls to a client side JavaScript object.&lt;br /&gt;&lt;br /&gt;You can use this to easily work with WebControls in an external JavaScript file without having to manually do any kind of tricks like this. &amp;#60;&amp;#37;&amp;#61;TextBox1.ClientID&amp;#37;&amp;#62;&lt;br /&gt;
&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;RegClientControls is a server control that interacts with Microsoft ASP.NET AJAX to register WebControls to a client side JavaScript object.&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;You can use this to easily work with WebControls in an external JavaScript file without having to manually do any kind of tricks like this. &amp;lt;%=TextBox1.ClientID%&amp;gt;&lt;br /&gt; &lt;br /&gt;To use this control, simply place it on your web page somewhere below the ScriptManager and set the ClientControls property to “All” and you’re done.&lt;br /&gt;Although this is the easiest way to set this control up, it is not recommended.&lt;br /&gt;You are better off leaving the ClientControls property set to “Marked” and pick and choose the controls you want to have registered to JavaScript.&lt;br /&gt;In the download section is a complete example with comments about the specific settings.&lt;br /&gt; &lt;br /&gt;For more information about this control, please see my blog post here: &lt;a href="http://weblogs.asp.net/joewrobel/archive/2008/02/19/clientid-problem-in-external-javascript-files-solved.aspx" class="externalLink"&gt;http://weblogs.asp.net/joewrobel/archive/2008/02/19/clientid-problem-in-external-javascript-files-solved.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt; &lt;br /&gt;&lt;img src="http://code.msdn.microsoft.com/Project/Download/FileDownload.aspx?ProjectName=RegClientControls&amp;amp;DownloadId=756" alt="RegClient.jpg" /&gt;&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>robolize</author><pubDate>Wed, 20 Feb 2008 22:45:08 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080220P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://code.msdn.microsoft.com/RegClientControls/Wiki/View.aspx?title=Home&amp;version=3</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Resource Page Description&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;!&lt;b&gt;RegClientControls is a server control that interacts with Microsoft ASP.NET AJAX to register WebControls to a client side JavaScript object.&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;You can use this to easily work with WebControls in an external JavaScript file without having to manually do any kind of tricks like this. &amp;lt;%=TextBox1.ClientID%&amp;gt;&lt;br /&gt; &lt;br /&gt;To use this control, simply place it on your web page somewhere below the ScriptManager and set the ClientControls property to “All” and you’re done.&lt;br /&gt;Although this is the easiest way to set this control up, it is not recommended.&lt;br /&gt;You are better off leaving the ClientControls property set to “Marked” and pick and choose the controls you want to have registered to JavaScript.&lt;br /&gt;In the download section is a complete example with comments about the specific settings.&lt;br /&gt; &lt;br /&gt;For more information about this control, please see my blog post here: &lt;a href="http://code.msdn.microsoft.com/CodeGallery" class="externalLink"&gt;Resource Page Startup Guide&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt; &lt;br /&gt;&lt;img src="http://code.msdn.microsoft.com/Project/Download/FileDownload.aspx?ProjectName=RegClientControls&amp;amp;DownloadId=756" alt="RegClient.jpg" /&gt;&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>robolize</author><pubDate>Wed, 20 Feb 2008 22:35:11 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080220P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://code.msdn.microsoft.com/RegClientControls/Wiki/View.aspx?title=Home&amp;version=2</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Resource Page Description&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;RegClientControls is a server control that interacts with Microsoft ASP.NET AJAX to register WebControls to a client side JavaScript object.&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;You can use this to easily work with WebControls in an external JavaScript file without having to manually do any kind of tricks like this. &amp;lt;%=TextBox1.ClientID%&amp;gt;&lt;br /&gt; &lt;br /&gt;To use this control, simply place it on your web page somewhere below the ScriptManager and set the ClientControls property to “All” and you’re done.&lt;br /&gt;Although this is the easiest way to set this control up, it is not recommended.&lt;br /&gt;You are better off leaving the ClientControls property set to “Marked” and pick and choose the controls you want to have registered to JavaScript.&lt;br /&gt;In the download section is a complete example with comments about the specific settings.&lt;br /&gt; &lt;br /&gt;&lt;img src="http://code.msdn.microsoft.com/Project/Download/FileDownload.aspx?ProjectName=RegClientControls&amp;amp;DownloadId=756" alt="RegClient.jpg" /&gt;&lt;br /&gt; &lt;br /&gt;Additional information on starting a new resource page is available here: &lt;a href="http://code.msdn.microsoft.com/CodeGallery" class="externalLink"&gt;Resource Page Startup Guide&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>robolize</author><pubDate>Wed, 20 Feb 2008 22:33:11 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080220P</guid></item><item><title>CREATED RELEASE: RegClientControls Release 1 (Feb 20, 2008)</title><link>http://code.msdn.microsoft.com/RegClientControls/Release/ProjectReleases.aspx?ReleaseId=430</link><description>First release.</description><author></author><pubDate>Wed, 20 Feb 2008 19:04:38 GMT</pubDate><guid isPermaLink="false">CREATED RELEASE: RegClientControls Release 1 (Feb 20, 2008) 20080220P</guid></item></channel></rss>