December 2005 - Posts

Adding team members to team site

I've installed Visual Studio Team Foundation Server on our server and set it up to use users from the active directory. This way we can use domains users to access Team Foundation Server. Now try this, create a new Team Project and add a domain user to Read More

Delete a team project from Team System

To create a team project in Team System, you usually use the Team Explorer. But when it comes to deleting a team project, you will need to use the TFSDeleteProject command line utility. See different switches and examples on how to use here. Read More

Webparts with Atlas vs MagicAjax

Try this.  <asp:WebPartManager ID="WebPartManager1" runat="server">            </asp:WebPartManager>            <ajax:AjaxPanel Read More

Atlas Preview December 2005 released

The December 2005 release of Atlas is now available at http://atlas.asp.net. Great stuff......Read more about it at Nikhil's blog. Read More

Upgraded to CS 1.1

I finally got the time to upgrade my website to CS 1.1. The upgrade went smooth, I just followed the instructions, and every thing worked perfectly. I used Ken Robertson's single blog/gallery siteurls generator for CS 1.1 to generate the siteurls file Read More

VirtualPathUtility class

Found this nice utility class while browsing through the reflector. It provides utility methods for common operations involving virtual paths. Here's an example taken from the msdn page.    StringBuilder sb = new StringBuilder();    Read More

Deprecations in ADO.NET 2.0

SqlCommand.Parameters.Add("@Name",Value) that we used a lot in ADO.NET 1.1 has been deprecated in ADO.NET 2.0.The new API is SqlCommand.Parameters.AddWithValue("@Name", Value). Why you ask?? well, it looks like that old Add method used to get confused Read More