Steve Smith's Blog

Musings on Software and the Developer Community

Archives - July 2010

Books

Sadukie tagged me with her books post a couple of weeks ago and I’ve been meaning to respond with a post of my own.  I have a post I update periodically that includes some of my most recommended developer books (where I’ve been meaning to add Agile Principles, Patterns, and Practices in C# by Robert...

Books →

Posted on Monday, July 26 2010         4 Comments

Working with Application Pool Identities

There a new feature of IIS called Application Pool Identities that was apparently introduced with SP2 of Windows Server 2008.  There’s a nice overview of Application Pool Identities here , which is the basis for this post, which is just my notes on the feature. If you’re setting up new web sites...

Working with Application Pool Identities →

Posted on Friday, July 09 2010         No Comments

Software Engineering 101 in Cleveland

Next week I’ll be one of several speakers at a free one-day event being held at the Microsoft office in Independence, Ohio.  The event is designed for Microsoft developers who are seeking to improve their skills in software engineering, including object-oriented design, design patterns, and automated...

Software Engineering 101 in Cleveland →

Posted on Wednesday, July 07 2010         No Comments

Set Up Build Agents By Project in TeamCity

We’re using TeamCity to manage our continous integration builds for CodeProject.com and LakeQuincy.com.  Before TeamCity, I was using CruiseControl.net, and TeamCity is much easier to get working (and requires far less XML manipulation).  I do miss CCTray, which I found to be much nicer than...

Set Up Build Agents By Project in TeamCity →

Posted on Wednesday, July 07 2010         No Comments

How Can I Determine The Current Controller or Action in an Html Helper

If you’re writing an HTML Helper for ASP.NET MVC you may want to do something different based on whether the page that is to be rendered was arrived at via a particular controller or controller action.  I found the following code which does just this in one of the ASP.NET MVC Themes available from...

How Can I Determine The Current Controller or Action in an Html Helper →

Posted on Friday, July 02 2010         3 Comments