Visual Studio® 2010 Web Deployment Projects – RTW

Visual Studio 2010 Web Deployment Projects is an add-in to Visual Studio 2010 which provides compatibility with both Visual Studio 2008 Web Deployment Projects and Visual Studio 2005 Web Deployment Projects. Web Deployment Projects provides developers with advanced compilation options. A Web Deployment Project is an extensible msbuild script, enabling web developers to create pre-build… Continue reading

Microsoft’s Windows 7 RTM Download Manager

A free download manager designed to integrate seamlessly with Windows 7 is now available from Microsoft. Dubbed the Microsoft Download Manager, the utility is designed, as the label implies, to help users administer their downloads beyond the boundaries of the browser. More often than not, downloading very large files can be problematic, especially in the… Continue reading

SharePoint 2010 Reference: Software Development Kit

The Microsoft SharePoint 2010 Software Development Kit (SDK) includes documentation and code samples for Microsoft SharePoint Foundation 2010 and for Microsoft SharePoint Server 2010, which builds upon the SharePoint Foundation 2010 infrastructure. The documentation includes detailed descriptions of the technologies that SharePoint Server 2010 and SharePoint Foundation 2010 provide for developers, reference documentation for the… Continue reading

Recursive Retrieval of Directory Structure in C#

This code snippet will retrive/enlists all files and folders in Directory and sub directories in Recursive traversal. See the Code Snippet below. [code lang=”c-sharp”] using System; using System.IO; namespace ConsoleAppDemo { class Program { static void Main(string[] args) { //List all the directories and files in Drive G: GetDirStructure(@"G:"); } #region GetDirStructure /// <summary> ///… Continue reading

SQL Tip: Replicating Structure of a Table to a new table (Where 1=2)

As SQL Developers we will have a requirement like we might need to create a temporary table, which would replicate the exact structure of a table, through SQL Queries. For example We have a table Customers, you want to create a new table(Customers1) temporarily for testing purpose or something. You might directly think it’s pretty… Continue reading