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:



How to create SearchAlert Programmatically?

Another MSDN SharePoint Related Post From Nishand’s Blog:

Note: Make sure that you have enabled search based alerts SSP-> Search Settings -> Search Based Alerts 1: SPSite spSite = new SPSite( “http://nishand:300/sites/PubSite/Search/” ); 2: SPWeb web = spSite.OpenWeb(); 3: Query alertQuery = new KeywordQuery(spSite); 4: alertQuery.QueryText = “Hello” // Keyword 5: SearchAlert searchAlert = new SearchAlert(spSite, alertQuery); 6: searchAlert.InnerAlert.AlertFrequency = SPAlertFrequency.Daily; 7: searchAlert.InnerAlert.Title = “Alert#2″ 8: searchAlert.InnerAlert.User = web.Users[ "domain\user" ]; 9: searchAlert.Update(); How to check whether an alert named ‘Alert#2′ has been created?   Go to Site Actions ->   Site Settings – User Alerts -> Select ‘user name’ and click on ‘update’ button

Continue Reading On MSDN:
How to create SearchAlert Programmatically?

  • Share/Bookmark

No Comments »

No comments yet.

RSS feed for comments on this post. TrackBack URL

Leave a comment