How to do URL Rewrites with ASP.NET 2.0 3.0 3.5 on IIS6 and IIS7 and What is Wild Card Mapping
Sunday 24 August 2008 @ 10:19 pm

A Step by step tutorial on how to use WildCard Mapping for processing URL requests. It includes how to set it with IIS6 and IIS7. It also discusses the theory behind how it works and talks about a great open source packaged called URLRewriter.Net. Basically, how to resolve http://mydomain.com/Home to http://mydomain.com/HomeSite/Home.aspx which looks so much nicer.



How to find your temporary asp.net executing assemblies location
Monday 18 August 2008 @ 12:22 pm
Seems, I keep forgetting where the temporary files asp.net uses. The reason it’s nice to know is sometimes you may want to open them with Reflector to see the generated code.  Also, sometimes, you want to delete those files because asp.net is confused and is reusing old ones.  So, here is the magic lines of [...]

Using MapPath with WCF Service, Setting aspNetCompatibilityEnabled to true
Monday 18 August 2008 @ 10:05 am
I’m just starting out using WCF in an application for the first time.  I’m using Visual Studio 2008 sp1 and created an asp.net web site from the standard create project wizard.  I then created a simple AJAX–enabled WCF Service as follows: I then added some code to the service that looks like the [...]
Comments (0) - Posted in C#, JavaScript, WCP  


C# In Depth by Jon Skeet Book Review
Thursday 3 July 2008 @ 12:22 pm

Jon Skeet published a great book titled C# In Depth by Manning Publishers. I strongly recommend getting this book


Comments (3) - Posted in Book Reviews, C#  


Refactoring With ReSharper, Some Very Nice C# fixes I often use
Thursday 3 July 2008 @ 6:59 am

One of the really nice features I enjoy using in Resharper 4.0 is the refactoring that converts inefficient (and unpleasant to read) syntax into nice efficient code. In this post, I’ll show some refactorings that Resharper (from JetBrains) gives us. There are lots more, but the ones listed below seem to come up the most in my own c# code.


Comments (1) - Posted in Best Practices, C#, Tools