Getting into Agile Development with .NET

Following on from my previous post Getting into Agile Development with .NET.
Confluence
Atlassian’s professional WIKI solution, it works great with JIRA and provides a really nice WIKI solution. For those who want to travel light with documentation, WIKI’s provide a nice fit for technical documentation, build documentation, internal designs, etc. as they easily accommodate rapid [...]

Creating Single sign on using .NET

We have a basic single sign-on requirement. We need to be able to allow users to login and pass that login to other distributed systems.
Here are the basic requirements:
1. We want to control the master user profile so that we can have access to the data and integrate it into our offline CRM systems.
2. We [...]

Creating a self documenting Database (MS SQL)

With SQL Server, it is strange how some of the most radical improvements that have been introduced over the years have been slipped in almost unnoticed. Conversely, the features that were plastered all over the marketing brochures are sometimes the ones that turn out to be dead ends.
A feature that fits into the former category [...]

SQL Caching

Caching is a very useful way for you to retain pages or data across HTTP requests, so that you can reuse them without the recreating them.
In ASP.net 2.0, it makes you easier to implement data caching. SQL cache dependencies are one of ASP.net 2.0 coolest features, which allows you to create dependencies between cached items [...]