<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/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>Palermo4 - All Comments</title><link>http://weblogs.asp.net/palermo4/default.aspx</link><description>J. Michael Palermo IV
</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>re: How To: Obtain Method Name Programmatically For Tracing</title><link>http://weblogs.asp.net/palermo4/archive/2007/07/08/how-to-obtain-method-name-programmatically-for-tracing.aspx#8290668</link><pubDate>Thu, 09 Feb 2012 11:04:24 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:8290668</guid><dc:creator>Darren</dc:creator><description>&lt;p&gt;This would be great if it worked but this technique of getting the current method cannot be relied on because the compiler may &amp;#39;inline&amp;#39; a particular method so the top of your stack is not actually the method you expect (it&amp;#39;s an ancestor).&lt;/p&gt;
&lt;p&gt;Search for &amp;quot;.net inlining&amp;quot; for a full explanation.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8290668" width="1" height="1"&gt;</description></item><item><title>re: AJAX Without ASP.NET AJAX</title><link>http://weblogs.asp.net/palermo4/archive/2007/07/09/ajax-without-asp-net-ajax.aspx#8265082</link><pubDate>Fri, 20 Jan 2012 17:17:01 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:8265082</guid><dc:creator>WhiteSites</dc:creator><description>&lt;p&gt;Great Article! &amp;nbsp;I will be giving this a try. &amp;nbsp;Too many people are dependent on prepackaged controls. Its nice to see someone showing how its done in raw code. Thanks!&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8265082" width="1" height="1"&gt;</description></item><item><title>re: How To: Access Underlying Data of the ObjectDataSource</title><link>http://weblogs.asp.net/palermo4/archive/2007/08/02/how-to-access-underlying-data-of-the-objectdatasource.aspx#8227360</link><pubDate>Fri, 06 Jan 2012 06:51:02 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:8227360</guid><dc:creator>Jibi</dc:creator><description>&lt;p&gt;private DataSet GetDS(ObjectDataSource ods)&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;var ds = new DataSet();&lt;/p&gt;
&lt;p&gt;var dv = (DataView)ods.Select();&lt;/p&gt;
&lt;p&gt;if (dv != null &amp;amp;&amp;amp; dv.Count &amp;gt; 0)&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;var dt = dv.ToTable();&lt;/p&gt;
&lt;p&gt;ds.Tables.Add(dt);&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;return ds;&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;use this code&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8227360" width="1" height="1"&gt;</description></item><item><title>Top Blog Posts of 2011 | ASP.NET | Syngu</title><link>http://weblogs.asp.net/palermo4/archive/2012/01/05/top-blog-posts-of-2011.aspx#8227353</link><pubDate>Fri, 06 Jan 2012 06:43:09 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:8227353</guid><dc:creator>Top Blog Posts of 2011 | ASP.NET | Syngu</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;Top Blog Posts of 2011 | ASP.NET | Syngu&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8227353" width="1" height="1"&gt;</description></item><item><title>re: How To: Get the Value of a Control Without an instance of the Control</title><link>http://weblogs.asp.net/palermo4/archive/2007/07/01/how-to-get-the-value-of-a-control-without-an-instance-of-the-control.aspx#8199923</link><pubDate>Sat, 31 Dec 2011 10:01:21 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:8199923</guid><dc:creator>Diolt</dc:creator><description>&lt;p&gt;All, I have a form (FRM_ShowAll) on which I have placed a number of instances of the same sub-form (FRM_Assign) as different child forms.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8199923" width="1" height="1"&gt;</description></item><item><title>re: How To: Access Underlying Data of the ObjectDataSource</title><link>http://weblogs.asp.net/palermo4/archive/2007/08/02/how-to-access-underlying-data-of-the-objectdatasource.aspx#8098504</link><pubDate>Wed, 07 Dec 2011 20:34:42 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:8098504</guid><dc:creator>Marlon</dc:creator><description>&lt;p&gt;Thanks for post this, it was really really helpful for a proyect i am doing.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8098504" width="1" height="1"&gt;</description></item><item><title>re: How To: Access Underlying Data of the ObjectDataSource</title><link>http://weblogs.asp.net/palermo4/archive/2007/08/02/how-to-access-underlying-data-of-the-objectdatasource.aspx#8063562</link><pubDate>Fri, 18 Nov 2011 14:46:09 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:8063562</guid><dc:creator>ric</dc:creator><description>&lt;p&gt;For some reason when I do this, the method gets called for every item that is in the datasource, so if 30 items appear, it gets called 30 times.&lt;/p&gt;
&lt;p&gt;Is this normal??&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8063562" width="1" height="1"&gt;</description></item><item><title>re: Updated HTML5 Resources</title><link>http://weblogs.asp.net/palermo4/archive/2011/11/10/updated-html5-resources.aspx#8055995</link><pubDate>Mon, 14 Nov 2011 18:43:32 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:8055995</guid><dc:creator>Palermo4</dc:creator><description>&lt;p&gt;@imran, thanks! &amp;nbsp;I added the resource to the list :)&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8055995" width="1" height="1"&gt;</description></item><item><title>re: Updated HTML5 Resources</title><link>http://weblogs.asp.net/palermo4/archive/2011/11/10/updated-html5-resources.aspx#8050030</link><pubDate>Sat, 12 Nov 2011 16:48:11 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:8050030</guid><dc:creator>imran_ku07</dc:creator><description>&lt;p&gt;I think you must add the great work of Paul Irish for maintaing the Html 5 Polyfill list. &lt;a rel="nofollow" target="_new" href="https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-Browser-Polyfills"&gt;github.com/.../HTML5-Cross-Browser-Polyfills&lt;/a&gt;&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8050030" width="1" height="1"&gt;</description></item><item><title>re: Recursive FindControl&lt;T&gt;</title><link>http://weblogs.asp.net/palermo4/archive/2007/04/13/recursive-findcontrol-t.aspx#7970755</link><pubDate>Fri, 30 Sep 2011 04:39:34 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7970755</guid><dc:creator>.net follower</dc:creator><description>&lt;p&gt;Nice post! My own FindControlRecursive helped me out many times. Especially, when I deal with MasterPages. For example, one of such usage is shown in my post here – &lt;a rel="nofollow" target="_new" href="http://dotnetfollower.com/wordpress/2010/12/sharepoint-add-onchange-attribute-to-dropdownchoicefield/"&gt;dotnetfollower.com/.../sharepoint-add-onchange-attribute-to-dropdownchoicefield&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7970755" width="1" height="1"&gt;</description></item></channel></rss>
