<feed version="0.3" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns="http://purl.org/atom/ns#" xml:lang="en-US"><title>Eric Wise</title><link rel="alternate" type="text/html" href="http://dotnetjunkies.com/WebLog/ewise/default.aspx" /><tagline type="text/html">Life, Rants, and .NET</tagline><id>http://dotnetjunkies.com/WebLog/ewise/default.aspx</id><author><url>http://dotnetjunkies.com/WebLog/ewise/default.aspx</url></author><generator url="http://communityserver.org" version="1.0.1.50214">Community Server</generator><modified>2004-12-23T08:24:00Z</modified><entry><title>CodeBetter</title><link rel="alternate" type="text/html" href="http://dotnetjunkies.com/WebLog/ewise/archive/2005/02/02/50403.aspx" /><id>58df7014-fd75-437c-9641-150997716d1c:50403</id><created>2005-02-02T10:57:00Z</created><content type="text/html" mode="escaped">&lt;P&gt;With so many of my favorite blogger compatriots moved over to codebetter... I have decided to join them.&lt;/P&gt;
&lt;P&gt;I may cross post for a while, but to be assured of new content better link to &lt;A href="http://codebetter.com/blogs/eric.wise/"&gt;http://codebetter.com/blogs/eric.wise/&lt;/A&gt;&lt;/P&gt;&lt;img src="http://dotnetjunkies.com/WebLog/aggbug.aspx?PostID=50403" width="1" height="1"&gt;</content><slash:comments>0</slash:comments></entry><entry><title>Available for work</title><link rel="alternate" type="text/html" href="http://dotnetjunkies.com/WebLog/ewise/archive/2005/01/31/49448.aspx" /><id>58df7014-fd75-437c-9641-150997716d1c:49448</id><created>2005-01-31T12:44:00Z</created><content type="text/html" mode="escaped">&lt;P&gt;If anyone in the Cleveland area is looking for a .NET contractor with a specialty in ASP .NET feel free to contact me.&lt;/P&gt;
&lt;P&gt;If you're not in cleveland, and don't mind a virtual employee feel free to contact me.&lt;/P&gt;&lt;img src="http://dotnetjunkies.com/WebLog/aggbug.aspx?PostID=49448" width="1" height="1"&gt;</content><slash:comments>0</slash:comments></entry><entry><title>Avoiding Try - Catch</title><link rel="alternate" type="text/html" href="http://dotnetjunkies.com/WebLog/ewise/archive/2005/01/29/48992.aspx" /><id>58df7014-fd75-437c-9641-150997716d1c:48992</id><created>2005-01-29T08:31:00Z</created><content type="text/html" mode="escaped">&lt;P&gt;Grant Killian has a &lt;A href="http://codebetter.com/blogs/grant.killian/archive/2005/01/27/48340.aspx"&gt;good article&lt;/A&gt; about why a coder shouldn't use try-catch blocks in just any situation.&amp;nbsp; I am ashamed to admit that back when I first started using .NET I was guilty of the sin he speaks of.&lt;/P&gt;
&lt;P&gt;What I wanted to add to his post was another very common poor usage of try-catch I have seen many inexperienced coders (including myself at one point in time) do.&lt;/P&gt;
&lt;DIV style="BORDER-RIGHT: windowtext 1pt solid; PADDING-RIGHT: 0pt; BORDER-TOP: windowtext 1pt solid; PADDING-LEFT: 0pt; FONT-SIZE: 10pt; BACKGROUND: #ffffff; PADDING-BOTTOM: 0pt; BORDER-LEFT: windowtext 1pt solid; COLOR: #000000; PADDING-TOP: 0pt; BORDER-BOTTOM: windowtext 1pt solid; FONT-FAMILY: Courier New"&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #0000ff"&gt;try&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ddlMyDropDownList.Items.FindByValue(myValue).Selected = &lt;/SPAN&gt;&lt;SPAN style="COLOR: #0000ff"&gt;true&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #0000ff"&gt;catch&lt;/SPAN&gt;&lt;SPAN&gt;(Exception ex)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="COLOR: #008000"&gt;//Do nothing or display some kind of warning message&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;!--EndFragment--&gt;
&lt;P&gt;Bad Bad Bad!&amp;nbsp; Try this instead:&lt;/P&gt;
&lt;DIV style="BORDER-RIGHT: windowtext 1pt solid; PADDING-RIGHT: 0pt; BORDER-TOP: windowtext 1pt solid; PADDING-LEFT: 0pt; FONT-SIZE: 10pt; BACKGROUND: #ffffff; PADDING-BOTTOM: 0pt; BORDER-LEFT: windowtext 1pt solid; COLOR: #000000; PADDING-TOP: 0pt; BORDER-BOTTOM: windowtext 1pt solid; FONT-FAMILY: Courier New"&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;ListItem li;&lt;/SPAN&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;li = myDropDownList.Items.FindByValue(myValue);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #0000ff"&gt;if&lt;/SPAN&gt;&lt;SPAN&gt;(li != &lt;/SPAN&gt;&lt;SPAN style="COLOR: #0000ff"&gt;null&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0px"&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; li.Selected = &lt;/SPAN&gt;&lt;SPAN style="COLOR: #0000ff"&gt;true&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&amp;nbsp;&amp;nbsp; &lt;/DIV&gt;&lt;!--EndFragment--&gt;&lt;img src="http://dotnetjunkies.com/WebLog/aggbug.aspx?PostID=48992" width="1" height="1"&gt;</content><slash:comments>5</slash:comments></entry><entry><title>Coming Soon - Easy Assets .NET: Source</title><link rel="alternate" type="text/html" href="http://dotnetjunkies.com/WebLog/ewise/archive/2005/01/26/48571.aspx" /><id>58df7014-fd75-437c-9641-150997716d1c:48571</id><created>2005-01-26T12:13:00Z</created><content type="text/html" mode="escaped">

					This page has been moved to &lt;a href="http://codebetter.com/"&gt;CodeBetter.Com&lt;/a&gt;. Please update your links accordingly.  The new post URL is:	&lt;a href="http://codebetter.com/blogs/eric.wise/archive/2005/01/26/48571.aspx"&gt;http://codebetter.com/blogs/eric.wise/archive/2005/01/26/48571.aspx&lt;/a&gt;&lt;img src="http://dotnetjunkies.com/WebLog/aggbug.aspx?PostID=48571" width="1" height="1"&gt;</content><slash:comments>0</slash:comments></entry><entry><title>A splash of organizational management</title><link rel="alternate" type="text/html" href="http://dotnetjunkies.com/WebLog/ewise/archive/2005/01/20/46580.aspx" /><id>58df7014-fd75-437c-9641-150997716d1c:46580</id><created>2005-01-20T07:24:00Z</created><content type="text/html" mode="escaped">

					This page has been moved to &lt;a href="http://codebetter.com/"&gt;CodeBetter.Com&lt;/a&gt;. Please update your links accordingly.  The new post URL is:	&lt;a href="http://codebetter.com/blogs/eric.wise/archive/2005/01/20/46580.aspx"&gt;http://codebetter.com/blogs/eric.wise/archive/2005/01/20/46580.aspx&lt;/a&gt;&lt;img src="http://dotnetjunkies.com/WebLog/aggbug.aspx?PostID=46580" width="1" height="1"&gt;</content><slash:comments>1</slash:comments></entry><entry><title>Of Patterns and SQL Stored Procedures</title><link rel="alternate" type="text/html" href="http://dotnetjunkies.com/WebLog/ewise/archive/2005/01/20/46551.aspx" /><id>58df7014-fd75-437c-9641-150997716d1c:46551</id><created>2005-01-20T06:29:00Z</created><content type="text/html" mode="escaped">

					This page has been moved to &lt;a href="http://codebetter.com/"&gt;CodeBetter.Com&lt;/a&gt;. Please update your links accordingly.  The new post URL is:	&lt;a href="http://codebetter.com/blogs/eric.wise/archive/2005/01/20/46551.aspx"&gt;http://codebetter.com/blogs/eric.wise/archive/2005/01/20/46551.aspx&lt;/a&gt;&lt;img src="http://dotnetjunkies.com/WebLog/aggbug.aspx?PostID=46551" width="1" height="1"&gt;</content><slash:comments>0</slash:comments></entry><entry><title>Can't... resist... stupid... quiz</title><link rel="alternate" type="text/html" href="http://dotnetjunkies.com/WebLog/ewise/archive/2005/01/16/44815.aspx" /><id>58df7014-fd75-437c-9641-150997716d1c:44815</id><created>2005-01-16T08:52:00Z</created><content type="text/html" mode="escaped">

					This page has been moved to &lt;a href="http://codebetter.com/"&gt;CodeBetter.Com&lt;/a&gt;. Please update your links accordingly.  The new post URL is:	&lt;a href="http://codebetter.com/blogs/eric.wise/archive/2005/01/16/44815.aspx"&gt;http://codebetter.com/blogs/eric.wise/archive/2005/01/16/44815.aspx&lt;/a&gt;&lt;img src="http://dotnetjunkies.com/WebLog/aggbug.aspx?PostID=44815" width="1" height="1"&gt;</content><slash:comments>1</slash:comments></entry><entry><title>Broadband?</title><link rel="alternate" type="text/html" href="http://dotnetjunkies.com/WebLog/ewise/archive/2005/01/13/44186.aspx" /><id>58df7014-fd75-437c-9641-150997716d1c:44186</id><created>2005-01-13T20:50:00Z</created><content type="text/html" mode="escaped">

					This page has been moved to &lt;a href="http://codebetter.com/"&gt;CodeBetter.Com&lt;/a&gt;. Please update your links accordingly.  The new post URL is:	&lt;a href="http://codebetter.com/blogs/eric.wise/archive/2005/01/13/44186.aspx"&gt;http://codebetter.com/blogs/eric.wise/archive/2005/01/13/44186.aspx&lt;/a&gt;&lt;img src="http://dotnetjunkies.com/WebLog/aggbug.aspx?PostID=44186" width="1" height="1"&gt;</content><slash:comments>0</slash:comments></entry><entry><title>HOWTO: Configure a datagrid template postback from a textbox</title><link rel="alternate" type="text/html" href="http://dotnetjunkies.com/WebLog/ewise/archive/2005/01/12/43639.aspx" /><id>58df7014-fd75-437c-9641-150997716d1c:43639</id><created>2005-01-12T08:55:00Z</created><content type="text/html" mode="escaped">

					This page has been moved to &lt;a href="http://codebetter.com/"&gt;CodeBetter.Com&lt;/a&gt;. Please update your links accordingly.  The new post URL is:	&lt;a href="http://codebetter.com/blogs/eric.wise/archive/2005/01/12/43639.aspx"&gt;http://codebetter.com/blogs/eric.wise/archive/2005/01/12/43639.aspx&lt;/a&gt;&lt;img src="http://dotnetjunkies.com/WebLog/aggbug.aspx?PostID=43639" width="1" height="1"&gt;</content><slash:comments>0</slash:comments></entry><entry><title>Nerd Score</title><link rel="alternate" type="text/html" href="http://dotnetjunkies.com/WebLog/ewise/archive/2005/01/05/41736.aspx" /><id>58df7014-fd75-437c-9641-150997716d1c:41736</id><created>2005-01-05T17:56:00Z</created><content type="text/html" mode="escaped">

					This page has been moved to &lt;a href="http://codebetter.com/"&gt;CodeBetter.Com&lt;/a&gt;. Please update your links accordingly.  The new post URL is:	&lt;a href="http://codebetter.com/blogs/eric.wise/archive/2005/01/05/41736.aspx"&gt;http://codebetter.com/blogs/eric.wise/archive/2005/01/05/41736.aspx&lt;/a&gt;&lt;img src="http://dotnetjunkies.com/WebLog/aggbug.aspx?PostID=41736" width="1" height="1"&gt;</content><slash:comments>1</slash:comments></entry><entry><title>Thoughts on Joel</title><link rel="alternate" type="text/html" href="http://dotnetjunkies.com/WebLog/ewise/archive/2005/01/04/41272.aspx" /><id>58df7014-fd75-437c-9641-150997716d1c:41272</id><created>2005-01-04T13:00:00Z</created><content type="text/html" mode="escaped">

					This page has been moved to &lt;a href="http://codebetter.com/"&gt;CodeBetter.Com&lt;/a&gt;. Please update your links accordingly.  The new post URL is:	&lt;a href="http://codebetter.com/blogs/eric.wise/archive/2005/01/04/41272.aspx"&gt;http://codebetter.com/blogs/eric.wise/archive/2005/01/04/41272.aspx&lt;/a&gt;&lt;img src="http://dotnetjunkies.com/WebLog/aggbug.aspx?PostID=41272" width="1" height="1"&gt;</content><slash:comments>0</slash:comments></entry><entry><title>Most popular posts</title><link rel="alternate" type="text/html" href="http://dotnetjunkies.com/WebLog/ewise/archive/2004/12/30/39807.aspx" /><id>58df7014-fd75-437c-9641-150997716d1c:39807</id><created>2004-12-30T07:40:00Z</created><content type="text/html" mode="escaped">

					This page has been moved to &lt;a href="http://codebetter.com/"&gt;CodeBetter.Com&lt;/a&gt;. Please update your links accordingly.  The new post URL is:	&lt;a href="http://codebetter.com/blogs/eric.wise/archive/2004/12/30/39807.aspx"&gt;http://codebetter.com/blogs/eric.wise/archive/2004/12/30/39807.aspx&lt;/a&gt;&lt;img src="http://dotnetjunkies.com/WebLog/aggbug.aspx?PostID=39807" width="1" height="1"&gt;</content><slash:comments>0</slash:comments></entry><entry><title>Year End Summary</title><link rel="alternate" type="text/html" href="http://dotnetjunkies.com/WebLog/ewise/archive/2004/12/30/39805.aspx" /><id>58df7014-fd75-437c-9641-150997716d1c:39805</id><created>2004-12-30T07:31:00Z</created><content type="text/html" mode="escaped">

					This page has been moved to &lt;a href="http://codebetter.com/"&gt;CodeBetter.Com&lt;/a&gt;. Please update your links accordingly.  The new post URL is:	&lt;a href="http://codebetter.com/blogs/eric.wise/archive/2004/12/30/39805.aspx"&gt;http://codebetter.com/blogs/eric.wise/archive/2004/12/30/39805.aspx&lt;/a&gt;&lt;img src="http://dotnetjunkies.com/WebLog/aggbug.aspx?PostID=39805" width="1" height="1"&gt;</content><slash:comments>0</slash:comments></entry><entry><title>Paint .NET 2.0</title><link rel="alternate" type="text/html" href="http://dotnetjunkies.com/WebLog/ewise/archive/2004/12/27/39181.aspx" /><id>58df7014-fd75-437c-9641-150997716d1c:39181</id><created>2004-12-27T18:29:00Z</created><content type="text/html" mode="escaped">

					This page has been moved to &lt;a href="http://codebetter.com/"&gt;CodeBetter.Com&lt;/a&gt;. Please update your links accordingly.  The new post URL is:	&lt;a href="http://codebetter.com/blogs/eric.wise/archive/2004/12/27/39181.aspx"&gt;http://codebetter.com/blogs/eric.wise/archive/2004/12/27/39181.aspx&lt;/a&gt;&lt;img src="http://dotnetjunkies.com/WebLog/aggbug.aspx?PostID=39181" width="1" height="1"&gt;</content><slash:comments>0</slash:comments></entry><entry><title>HOWTO: Code a Domain Manager</title><link rel="alternate" type="text/html" href="http://dotnetjunkies.com/WebLog/ewise/archive/2004/12/23/38532.aspx" /><id>58df7014-fd75-437c-9641-150997716d1c:38532</id><created>2004-12-23T08:24:00Z</created><content type="text/html" mode="escaped">

					This page has been moved to &lt;a href="http://codebetter.com/"&gt;CodeBetter.Com&lt;/a&gt;. Please update your links accordingly.  The new post URL is:	&lt;a href="http://codebetter.com/blogs/eric.wise/archive/2004/12/23/38532.aspx"&gt;http://codebetter.com/blogs/eric.wise/archive/2004/12/23/38532.aspx&lt;/a&gt;&lt;img src="http://dotnetjunkies.com/WebLog/aggbug.aspx?PostID=38532" width="1" height="1"&gt;</content><slash:comments>0</slash:comments></entry></feed>