Strange to find one of my Web friends missing from Windows development.
|
Here are eleven things that annoy me that I have run into while doing .Net programming.
|
Make an MD5 hash more secure by adding a little salt.
|

11/11/2008
ASP.net, C#, AJAX
(2)
Here are eleven tips and tricks I've collected while developing ASP.net applications that are useful and just might even make your day a little brighter.
|
One thing that really annoys me is how variable scope is handled in Switch statements. Each case doesn't get its own local variables, rather a variable declared in one case is assessable by all.
|

11/9/2008
C#, Security
(8)
Never store passwords as plain text. Here is a simple function that will take a string and make it into an MD5 hash, making the world a more secure place in one fell swoop.
|
The best way to go about getting the ID of a row you just added to your MS SQL database from within a C# web application.
|
When you do something that should cause an error, you should get an error. That seems like a simple enough rule to follow, yet
|
A need little feature that can jazz up any Gridview is adding a color-change when the mouse is over a row. This tutorial shows you how (using alternating row colors to boot).
|

7/17/2008
ASP.net, C#
(2)
A quick reference on how to use the JavaScript __doPostBack function to postback a page from the client-side.
|

7/15/2008
ASP.net, C#
(4)
RSS is a beautiful thing that no website should be without. This code create just such an RSS feed for your syndication pleasure.
|
A pretty little ditty that I created to allow you to copy items into a textbox quickly clientside.
|

6/24/2008
C#, ASP.net
(0)
Expanding on my previous post to add tag count, alternating colors, and fix a bug with untrimmed tags.
|
C# example how to load comma delimited tags and display them in a label.
|

5/25/2008
C#, ASP.net
(4)
A brief look at the new ASP.net 3.5 ListView control and how to caputre input from imageButton clicks.
|