Mike Roberts over at ThoughWorks have a project to help with continuous integration. The product is called "Tree Surgeon". Tree Surgeon solves the problem of how to set up a development tree. …
The hidden Trace page, trace.axd
Most developers dont know about the virtual trace output page available in ASP.NET. This page allows you to see the Trace Output provided by ASP.NET. You can view many statistics about the pages that …
Simian Upgrade
For those of you who use Simian, please be aware, they upgraded the product and the old "-recurse" option no longer works. Read below on how to fix it. The Issue I downloaded it last night to …
Force HTTPS on all requests, HttpModule
Sometimes we have websites that are strictly HTTPS. No files whatsoever are served up through HTTP. We want our users to only access the HTTPS portion of our website but we dont want them to …
Continue Reading about Force HTTPS on all requests, HttpModule →
Prototype/Proof of Concept code is not production code!
One thing that should be burned into the heads of many developers is that Prototype/Proof of Concept (PoC) code is NOT production code. Proof of Concept code is not production code.Prototype code is, …
Continue Reading about Prototype/Proof of Concept code is not production code! →
ASP.NET File Name at Runtime
Retrieving the ASP.NET filename can be done in many ways. I've created this method in a few helper classes in some of the different jobs I have. public string GetCurrentPageFileName(){ …