Since I will be off for two weeks, I want to wish everyone Happy Holidays and a Happy New Year.
When reading HTML with C#, do you use a parser or do you use Regular Expressions? This post will discuss how parsing is better than regular expressions.
As an ASP.NET MVC request is received, the routing sends the request to the proper controller. Today, we talk about how to use routing, some tips on using them effectively, and how to debug them easily.
For those interested in getting into ASP.NET, the most recent web technology is ASP NET MVC. In this post, I show you the fastest way to learn how to build web applications with ASP NET MVC.
JetBrains just released their new version of ReSharper called ReSharper 9 Ultimate. In this post, I review what some of the new features are that make it even more of a critical Visual Studio add-on.
Refactoring code and design patterns are becoming more common in programming, so why not have a solid understanding of how to refactor existing code into patterns?
As a web developer, you have no doubt worked with CSS. Most developers can't stand it. In this post, I'll show you the basics of CSS, CSS terminology, and various techniques on how to use...and debug...CSS.
Multiple bit flags can be used with permissions or application settings. But how do you save them? Here's a simple technique on how to store those multiple bit flags as an integer in a table.
Since Extension methods were introduced in C# 3.0, I have constantly been looking for ways to extend classes to ease my coding pain. Here are my 10 favorite extension methods.
Don't pepper your HttpContext all over the place. ActionFilters are used to contain any kind of HttpContext. In this post, we'll talk about how to keep your HttpContext in check using ActionFilters with examples.