Over the last few years, SEO has grown into an expertise all its own. Everyone wants their sites to be “SEO friendly”, or optimized for search engines. Until now, creating dynamic sites using ASP.Net web forms that were SEO friendly was a daunting and tedious task. Now, in ASP.Net 4.0 and...
Entries categorized '.Net' ↓
Routing with ASP.Net 4.0 - SEO - real simple
Sunday, May 16 2010 - .Net
VB.Net - We should all B# (be sharp)
Wednesday, March 10 2010 - .Net
Over the past few years, really since the .Net framework was introduced, there has been much debate and false statements and beliefs surrounding the various .Net languages. I probably should have classified this as a rant, but I have legitimate concerns about how one language is treated differently than...
Boxing and Unboxing
Monday, February 08 2010 - .Net
Boxing and Unboxing Are you moving? Need a rental truck? Oh, you’re talking about “Boxing” as in converting value types to reference types. An example of boxing: 'Implicit boxing VB Dim x as Int16 = 5 Dim obj as Object = x //Implicit boxing C# Int16 x = 5; object obj = x; 'Explicit...
Using jCarousel Lite With ASP.Net
Sunday, January 31 2010 - .Net
Don't break the keyboard! After almost two hours of debugging a contact form built in C# and ASP.Net, something fairly trivial to do, I almost broke another keyboard. I was trying to get the client side validators to work (another trivial process), but nothing I did was working. The validators would...
HTML Parsing - HTML Agility Pack
Saturday, January 30 2010 - .Net
Recently, I had the need to parse html documents for special bits of data. Of course, the data resided on multiple sites, all of which had their own structure, classes, etc.. Building regular expressions for the parsing was my first thought, although I knew that using REGEX comes at a cost. After doing...
Graffiti CMS
Saturday, January 30 2010 - .Net
Just installed Graffiti CMS, which is a great open source CMS. Graffiti is pretty slick it installs relatively easy and is ultra configurable. Because it's open source, you can extend it, change it, pretty much change anything you want. It's latest version makes use of the .Net 3.5 framework, so adding...