<?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>Andrew Rea - All Comments</title><link>http://weblogs.asp.net/andrewrea/default.aspx</link><description>&lt;p&gt;C# &amp; ASP.NET Developer BLOG&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/AndrewRea"&gt;&lt;img src="http://feeds.feedburner.com/~fc/AndrewRea?bg=#3399FF&amp;amp;fg=#FFFFFF&amp;amp;anim=0" height="26" width="88" style="border:0" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Debug Build: 20510.895)</generator><item><title>re: GridView Row Click Selection via ClientSide Code</title><link>http://weblogs.asp.net/andrewrea/archive/2008/08/04/gridview-row-click-selection-via-clientside-code.aspx#7246386</link><pubDate>Wed, 04 Nov 2009 02:03:14 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7246386</guid><dc:creator>Mircea Dunka</dc:creator><description>&lt;p&gt;This doesn't work on Mozilla because we don't have an &amp;quot;e&amp;quot;, but an &amp;quot;event&amp;quot;.&lt;/p&gt;
&lt;p&gt;Please insert one more &amp;quot;if&amp;quot;: if (!e) e = event;&lt;/p&gt;
&lt;p&gt;sb1.Append(&amp;quot;var targ;if (!e) var e = window.event;if (!e) e = event;if (e.target) targ = e.target;&amp;quot;)&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7246386" width="1" height="1"&gt;</description></item><item><title>re: Add object to Clipboard using C# in a couple of ways</title><link>http://weblogs.asp.net/andrewrea/archive/2008/02/18/add-object-to-clipboard-using-c-in-a-couple-of-ways.aspx#7235113</link><pubDate>Wed, 21 Oct 2009 16:23:06 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7235113</guid><dc:creator>Gaurav</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;If I copied something into the clipboard, is it possible to remove just what I put in the clipboard? &amp;nbsp;I know if I use Clipboard.clear(), I can clear the clipboard, but I want to retain the Clipboard information before I copied something to it.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7235113" width="1" height="1"&gt;</description></item><item><title>re: Intellisense in Skin File</title><link>http://weblogs.asp.net/andrewrea/archive/2008/03/06/intellisense-in-skin-file.aspx#7231787</link><pubDate>Sat, 17 Oct 2009 01:46:27 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7231787</guid><dc:creator>ledo_moon</dc:creator><description>&lt;p&gt;Intellisense problem for asp.net skin files&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://ledomoon.blogspot.com/2009/03/intellisense-problem-for-aspnet-skin.html"&gt;ledomoon.blogspot.com/.../intellisense-problem-for-aspnet-skin.html&lt;/a&gt;&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7231787" width="1" height="1"&gt;</description></item><item><title>re: Bad Word Filter With Regular Expressions</title><link>http://weblogs.asp.net/andrewrea/archive/2008/05/03/bad-word-filter-with-regular-expressions.aspx#7223720</link><pubDate>Mon, 05 Oct 2009 17:41:50 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7223720</guid><dc:creator>Bob</dc:creator><description>&lt;p&gt;Terrific application of dynamic creation of patterns and filtering offensive terms.&lt;/p&gt;
&lt;p&gt;Only noticeable drawback - all of the characters of the original word must be present, one workaround could be to make vowels optional - $h!t, cr@p - as well as making the $ interchangable with &amp;quot;S&amp;quot; by treating it like a consonant, or adding commonly used badword hacks to the definition list.&lt;/p&gt;
&lt;p&gt;Something like \b[a-zA-Z$$][/W]* ... [a-zA-Z$$]\b , keeping the character case insensitive, etc. &amp;nbsp;Or, perish the thought, asking folks to be courteous and not use annoying text decoration$ in their on-line p!r@o#s$e. &amp;nbsp;Honestly, how many words are spelled with symbols smack-dab in the middle? OK, smack-dab doesn&amp;#39;t count. &amp;nbsp;Gotta&amp;#39; start another list :o)&lt;/p&gt;
&lt;p&gt;Thanks for posting your solution - I plan on experimenting with this to provide some level of protection on my site&amp;#39;s comments page.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7223720" width="1" height="1"&gt;</description></item><item><title>re: Pair Type, maybe even a Trio</title><link>http://weblogs.asp.net/andrewrea/archive/2008/04/24/pair-type-maybe-even-a-trio.aspx#7217817</link><pubDate>Sun, 27 Sep 2009 10:08:07 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7217817</guid><dc:creator>Fredde</dc:creator><description>&lt;p&gt;Check out the built-in KeyValuePair (System.Collections.Generic.KeyValuePair) too, it works like the updated version.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7217817" width="1" height="1"&gt;</description></item><item><title>re: DropDownList AppendDataBoundItems (A quick starter, a tip which many will know but for those who do not...)</title><link>http://weblogs.asp.net/andrewrea/archive/2008/01/23/test-post.aspx#7199037</link><pubDate>Thu, 10 Sep 2009 10:24:09 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7199037</guid><dc:creator>Javad</dc:creator><description>&lt;p&gt;hi&lt;/p&gt;
&lt;p&gt;thanks for this post, i had this problem(hard coding on OnDataBound event of DropDown list).&lt;/p&gt;
&lt;p&gt;again thanks a lot.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7199037" width="1" height="1"&gt;</description></item><item><title>re: Catching the exception from the ObjectDataSource Inserted Event</title><link>http://weblogs.asp.net/andrewrea/archive/2008/11/17/catching-the-exception-from-the-objectdatasource-inserted-event.aspx#7196513</link><pubDate>Tue, 08 Sep 2009 12:52:12 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7196513</guid><dc:creator>Robson Previato</dc:creator><description>&lt;p&gt;Obrigado pela dica.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7196513" width="1" height="1"&gt;</description></item><item><title>re: Programmatic Drawing with Silverlight 2.0/3.0 – An Analogue Clock</title><link>http://weblogs.asp.net/andrewrea/archive/2009/08/12/programmatic-drawing-with-silverlight-2-0-3-0-an-analogue-clock.aspx#7195881</link><pubDate>Mon, 07 Sep 2009 20:34:26 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7195881</guid><dc:creator>Todd Henderson</dc:creator><description>&lt;p&gt;I think this example is great! &amp;nbsp;However, when I run the code (it runs perfectly) I made some changes and when I re-run, the changes don&amp;#39;t apply?? &amp;nbsp;Any ideas? &amp;nbsp;Changes such as color, break-points and text to be displayed. Thanks in advance, -Todd&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7195881" width="1" height="1"&gt;</description></item><item><title>re: MetaWeblog API, Windows Live Writer - Adding Categories</title><link>http://weblogs.asp.net/andrewrea/archive/2008/06/26/metaweblog-api-windows-liver-writer-adding-categories.aspx#7195397</link><pubDate>Mon, 07 Sep 2009 06:41:01 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7195397</guid><dc:creator>Carlos Bercero</dc:creator><description>&lt;p&gt;Hello Andrew,&lt;/p&gt;
&lt;p&gt;Just to drop you a note that it feels good to know that i'm not the only one reinventing the wheel, making my own blog platform.&lt;/p&gt;
&lt;p&gt;I had exactly this problem and landed here looking for a solution.&lt;/p&gt;
&lt;p&gt;I have a challenge for both of us: How on earth can we turn on all the features in Live Writer and get to know each API call it needs, so we can implement them all! How about that?&lt;/p&gt;
&lt;p&gt;Keep your good work!&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7195397" width="1" height="1"&gt;</description></item><item><title>re: We should have a Shuffle function for the Array base class - like Java</title><link>http://weblogs.asp.net/andrewrea/archive/2008/06/16/we-should-have-a-shuffle-function-for-the-array-base-class-like-java.aspx#7188005</link><pubDate>Tue, 01 Sep 2009 14:46:20 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7188005</guid><dc:creator>Magnus</dc:creator><description>&lt;p&gt;list.OrderBy(i =&amp;gt; Guid.NewGuid());&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7188005" width="1" height="1"&gt;</description></item></channel></rss>