Latest Free SharePoint Software

The most recent SharePoint freeware is:

Title: SimpleChart (Org Chart WebPart) For SharePoint
Date Published: 10/22/2009

Previous WebPart Release:

DSAG - DoD / SharePoint Guide

SharePoint DoD Logo

The Department Of Defense SharePoint Architecture Guide (DSAG) is an attempt to align collaborative tooling through an ever growing series of targeted documentation in accordance with major DoD initiatives, primarily Defense Information Enterprise Architecture 1.0.

Part 1, Part 2, Part 3, Part 4, Part 5, Part 6, Part 7, Part 8, Part 9, Part 10, Part 11, Part 12, Part 13

I wish I would have known about this trick a long time ago. Jim Sally whom I work with demonstrated to me a really neat commenting trick that I did not know about, that really helps when you are mocking out objects particularly. When you have some arbitrary class file, like this jawdropper PLAIN TEXT [...]

  • Share/Bookmark

Continue Reading This Article...

There have been some questions posted in the SharePoint development newsgroups about how to appropriately get some object URL's in SharePoint. Here are some examples: PLAIN TEXT C#: public string GetListUrl(SPList oList) { if (oList.DefaultView == null) { return oList.ParentWeb.Url; } return (oList.ParentWeb.Url + "/" + oList.DefaultView.Url); }   public string GetWebUrl(SPWeb oWeb) { return [...]

  • Share/Bookmark

Continue Reading This Article...

Answering another development question that was posted in the newsgroups, someone wanted to know assuming that they were aware of the path of an SPFolder object (a subfolder that existed in a SharePoint document library), how to return the GUID of the SharePoint document library that was housing the relevant SPFolder object. This is accomplished [...]

  • Share/Bookmark

Continue Reading This Article...

There was a question posted in the development newsgroups about how to structure a different SPList return method then the orthodox SPWeb.GetList method out of the Microsoft.SharePoint namespace. Here is one that I use, which has some slight enhancements. PLAIN TEXT C#: public SPList ReturnListByUrl(string strPath) { if (strPath.ToLower().StartsWith("http")) { strPath = strPath.Substring(m_oWeb.Url.Length + 1); [...]

  • Share/Bookmark

Continue Reading This Article...