This error definitely comes from not following Microsoft’s best practices. There’s a great article on MSDN about best practices that…
Category Archives: Programming
a collection of software/web development resources
How to: Create “My Site” host
When you setup your SharePoint environment you will create an initial web application and site collection. Also, a “My Sites”…
Basics: Interact with SharePoint 2010 Data (post 3 – SPMetal and LinQ)
This is the third tutorial about accessing and manipulating data on SharePoint. The first one leveraged web services and the…
Quick tip: Use (or, avoid using) the “base.CreateChildControls()” method
You might have noticed the method “base.CreateChildControls()” being used in some of the webpart examples I’ve been sharing. It turns out…
Basics: DateTime.ToString() format
One of the most useful overloads of the ToString() method is the ability to provide a format for the object…
Quick tip: Set C# as the default programming language in Infopath
So, you’re designing your InfoPath form and as soon as you click on some field to manipulate it with code,…
Quick tip: Troubleshoot “Web Application not found” errors in SharePoint 2010 development
When developing against SharePoint 2010, you might come across the following error: “The web application at [URL] could not be…
Basics: Visual web parts VS Standard web parts
If you’re working with Visual Studio to create a web part you will notice that there is a couple of…
Basics: InnerXml and OuterXml
If you worked though the first attempt to interact with SharePoint data through web services (here) you must have noticed…
Basics: Interact with SharePoint 2010 Data (post 2 – Server Object Model)
In a previous post, I made an introduction to interacting with SharePoint data through Web Services; easily, albeit a bit…