About      |       Articles      |      Services      |      Software      |      Contact

Latest Free SharePoint Software

ARB Security Solutions regularly releases free SharePoint software, including WebParts, Client Applications, Framework Extensions, and other Miscellaneous Components.
The most recent freeware is:

Title: Simple SharePoint Rollup WebPart
Date Published: 10/22/2009

Previous Two Free WebPart Releases:

SecureCenter For SharePoint

By SharePoint security integrators, for SharePoint security integrators.

SharePoint Security Assurance Program™

For externally facing SharePoint deployments, security is an acutely important deployment concern. Learn how through daily security scanning, you can ensure external business users and partners that they can collaborate in confidence!

Security Assurance WebPart:



One of the principal code modifications when using C# 3.0 is the introduction of implicit types. Having freshly concluded a sizeable code review for a manufacturing company where they had just completed framework retrofits, I found myself irritated with the prostitution of implicit types. So I thought that I would attempt [...]


Continue Reading This Article...

Using SharePoint User Profiles is an exceedingly influential option when working with additional SharePoint user data. One impressive method is the GetPeers() method which as the name implies, allows you to query down into user peers from a profile object. The GetPeers method returns an array of User Profile objects, which you can later iterate [...]


Continue Reading This Article...

If you consume a SPWebApplication object as a parameter, you can return the virtual directory path by using the GetIisSettingsWithFallback() method to return the settings for a specified SharePoint zone.
Here is a static method that demonstrates how to do it:
PLAIN TEXT
C#:

public static string GetVirtualDirectoryPath(SPWebApplication webApp)

{

string path = string.Empty;

try

{

if (webApp != null)

{

path = webApp.GetIisSettingsWithFallback(SPUrlZone.Default).Path.ToString();

}

}

catch (Exception exception)

{

 

}

return [...]


Continue Reading This Article...

One of my friends just asked me a rather distinctive question. What if I wanted to build a typed collection of SPList objects by passing in a SharePoint web (SPWeb) and a pattern to match the list by (string) into some arbitrary method?
In order to do this, we can presume since the pattern is being [...]


Continue Reading This Article...

It is essential to remember when trying to get the entirety of WebForms within a SPWeb object to make certain that you loop through both the SPWeb.Files to compensate for the root level file collection as well as through each SPList testing its items. Often times you will find when trying to build a “master” [...]


Continue Reading This Article...