SharePoint Server 2010 – Getting Started link guide for developers
November 4, 2009
SharePoint Developer – General info
- http://sharepoint2010.microsoft.com/Pages/default.aspx – Make sure you watch the videos
- SharePoint Conference KeyNotes
- SharePoint 2010 (Beta) Developer Center
- SharePoint Products and Technologies 2010 (Technical Preview) – Developer Documentation download
- SharePoint 2010: Developer Platform White Paper
- SharePoint 2010: SharePoint Developer Platform Wall Poster
- SharePoint 2010- Developer and IT Professional Learning Plan
- SharePoint 2010: Professional Developer Evaluation Guide and Walkthroughs
- Getting started with development on SharePoint 2010 Hands on Labs in C# and VB.Net
- SharePoint 2010 Top 10 Features (Joel Oleson)
- SharePoint 2010 MSDN Forums
SharePoint Developer – Specific topics
- Web Content Management in SharePoint Server 2010
- Part 1 – Improvements to the Core SharePoint Platform & How the Benefit SharePoint 2010 Web Content Management
- Part 2 – What’s Improved with SharePoint Server 2010 Web Content Management
- Part 3 – What’s New with SharePoint Server 2010 Web Content Management
- SharePoint 2010 Sandboxed solutions
Background info
[From SharePoint Server 2010 – Getting Started link guide for developers]
Debugging SharePoint
November 10, 2008
User friendly error pages are not what we need when trying to debug something…
Modify your web.config as follows, and all will be well.
< ?xml version=”1.0″ encoding=”UTF-8″ standalone=”yes”?>
< configuration>
< configSections>
…
configSections>
< SharePoint>
< SafeMode MaxControls=”200″ CallStack=”true”
DirectFileDependencies=”10″ TotalFileDependencies=”50″
AllowPageLevelTrace=”false”>
< PageParserPaths>
PageParserPaths>
SafeMode>
CallStack=”true” being the important setting here.
Â
Â
Then further on down the file:
< customErrors mode=”Off”
/>
Visual Studio 2010 and .NET Framework 4.0 CTP Download
November 9, 2008
Find the Virtual PC download of the CTP at the following link : https://connect.microsoft.com/VisualStudio/content/content.aspx?ContentID=9790
Windows SharePoint Services Document: Application Templates for Windows SharePoint Services 3.0 – Under the Hood
July 27, 2007
As per my previous post, there were things MS managed to do , but form the products was not immediately evident how it was done. This white
Development Tools and Techniques for Working with Code in Windows SharePoint Services 3.0
July 26, 2007
Currently a Program Manager on assignment at MCS Reading we created a solution using Web Parts on Windows SharePoint Services v3. The assumption is that the platform would provide us with a good starting point. However it was easier
Create a custom Windows Workflow Activity and make it available in SharePoint Designer
March 9, 2007
Ever wondered how the whole Workflow flows in SharePoint ?
Below is an Article on how to create a custom workflopw and surface it in SaherPoint Designer.
Debug VB Script files in Visual Studio 2005 WScript.exe
February 27, 2007
Using Isolated Storage and a Singleton to store a history
February 8, 2007
The Challenge
- Store some search results for a custom application on the users desktop.
- Find a tidy way to maintain state whilst maintaining performance.
The Solution
Use the Isolated Storage to persist the data you wish to maintain whilst keeping it alive using a Singleton class to avoid multiple I/O.
The sample
