Eric Wise

Life, Rants, and .NET

<August 2008>
SuMoTuWeThFrSa
272829303112
3456789
10111213141516
17181920212223
24252627282930
31123456


Navigation

Blogs I read

Just for fun

My Life

.NET Stuff

Subscriptions



CodeBetter

With so many of my favorite blogger compatriots moved over to codebetter... I have decided to join them.

I may cross post for a while, but to be assured of new content better link to http://codebetter.com/blogs/eric.wise/

posted Wednesday, February 02, 2005 10:57 AM by ewise

Available for work

If anyone in the Cleveland area is looking for a .NET contractor with a specialty in ASP .NET feel free to contact me.

If you're not in cleveland, and don't mind a virtual employee feel free to contact me.

posted Monday, January 31, 2005 12:44 PM by ewise

Avoiding Try - Catch

Grant Killian has a good article about why a coder shouldn't use try-catch blocks in just any situation.  I am ashamed to admit that back when I first started using .NET I was guilty of the sin he speaks of.

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.

   try

   {

      ddlMyDropDownList.Items.FindByValue(myValue).Selected = true;

   }

   catch(Exception ex)

   {

      //Do nothing or display some kind of warning message

   }

Bad Bad Bad!  Try this instead:

   ListItem li;

   li = myDropDownList.Items.FindByValue(myValue);

   if(li != null)

       li.Selected = true;

  

posted Saturday, January 29, 2005 8:31 AM by ewise

Coming Soon - Easy Assets .NET: Source
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/eric.wise/archive/2005/01/26/48571.aspx

posted Wednesday, January 26, 2005 12:13 PM by ewise

A splash of organizational management
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/eric.wise/archive/2005/01/20/46580.aspx

posted Thursday, January 20, 2005 7:24 AM by ewise

Of Patterns and SQL Stored Procedures
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/eric.wise/archive/2005/01/20/46551.aspx

posted Thursday, January 20, 2005 6:29 AM by ewise

Can't... resist... stupid... quiz
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/eric.wise/archive/2005/01/16/44815.aspx

posted Sunday, January 16, 2005 8:52 AM by ewise

Broadband?
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/eric.wise/archive/2005/01/13/44186.aspx

posted Thursday, January 13, 2005 8:50 PM by ewise

HOWTO: Configure a datagrid template postback from a textbox
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/eric.wise/archive/2005/01/12/43639.aspx

posted Wednesday, January 12, 2005 8:55 AM by ewise

Nerd Score
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/eric.wise/archive/2005/01/05/41736.aspx

posted Wednesday, January 05, 2005 5:56 PM by ewise

Thoughts on Joel
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/eric.wise/archive/2005/01/04/41272.aspx

posted Tuesday, January 04, 2005 1:00 PM by ewise

Most popular posts
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/eric.wise/archive/2004/12/30/39807.aspx

posted Thursday, December 30, 2004 7:40 AM by ewise

Year End Summary
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/eric.wise/archive/2004/12/30/39805.aspx

posted Thursday, December 30, 2004 7:31 AM by ewise

Paint .NET 2.0
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/eric.wise/archive/2004/12/27/39181.aspx

posted Monday, December 27, 2004 6:29 PM by ewise

HOWTO: Code a Domain Manager
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/eric.wise/archive/2004/12/23/38532.aspx

posted Thursday, December 23, 2004 8:24 AM by ewise

3 Things
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/eric.wise/archive/2004/12/23/38526.aspx

posted Thursday, December 23, 2004 7:44 AM by ewise

Page_Load, Grids with Dynamically Controls, and calendars OH MY!!!!
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/eric.wise/archive/2004/12/16/37341.aspx

posted Thursday, December 16, 2004 9:10 AM by ewise

Of Burnout and Overtime Exemptions
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/eric.wise/archive/2004/12/15/37138.aspx

posted Wednesday, December 15, 2004 9:48 AM by ewise

Interesting Concept (discuss)
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/eric.wise/archive/2004/12/13/36332.aspx

posted Monday, December 13, 2004 8:13 AM by ewise

Job in Charleston
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/eric.wise/archive/2004/12/06/35276.aspx

posted Monday, December 06, 2004 10:24 AM by ewise




Powered by Dot Net Junkies, by Telligent Systems