Multiple CTEs in Sequence
In a previous post, I discussed how to use common table expressions to generate temporary result sets that can read from and written to. In this post, I’ll show how…
In a previous post, I discussed how to use common table expressions to generate temporary result sets that can read from and written to. In this post, I’ll show how…
Common table expressions (CTEs) are a powerful feature that was added to Microsoft SQL Server 2005. Common table expressions can be thought of as a temporary result set that can…
A short while ago I had a need to limit simultaneous requests to a web service from a multi-threaded application to prevent timeouts. I learned about semaphores in school and…
A few weeks back I was tasked with deploying some content to a site collection including a new master page. The requirements stated that upon activation of the feature, the…
SharePoint 2007 does not enable ASP.NET AJAX by default. Although the process to enable ASP.NET AJAX on a SharePoint 2007 web application is rather straightforward, it can be time consuming…
In a previous post, we developed a simple web part to add two numbers together and display the result. It is a great introduction to web parts in the SharePoint…
A large part of SharePoint's power comes from the fact that the interface is completely pluggable. Users can add web parts to pages of their choice in order to add…
In my previous post, I discussed the basics of using a CustomAction to enhance the functionality of a content type. We used a CustomAction to redirect and pass some parameters…
CustomActions allow you to provide an easy way for an end user to perform some sort of action on or with a specific list item that is not available in…
As you begin developing more and more complex features to be deployed to SharePoint, you will most likely come across the need to perform some additional actions when your feature…