Development Tools and Techniques for Working with Code in Windows SharePoint Services 3.0

I just found two great articles posted in the MSDN web site by Patrick Tisseghem of U2U that covers a series of aspects on development with the SharePoint platform,...

WCM – Save Site as Template

0
If you want to save a site as template in a SharePoint 2007 Internet Site you don't have that option in the Site Settings page, so you have to...

SharePoint 2007 Debugging – Show Error Messages

Sometimes debugging SharePoint errors is not the easiest of tasks. The most common and annoying situation is when the "An unexpected error has occurred" error message is shown and...

Recursos sobre segurança em Sharepoint 2007

No post da autoria do Joel Oleson no blog da equipa de Sharepoint da Microsoft, podem encontrar um conjunto bastante interessante de recursos composto por web casts, artigos, etc sobre...

SharePoint 2007: Tools Collection

Encontrei num post do blog do JOPX, este conjunto de tools para SharePoint 2007. SharePoint Tips Utility Pack - package of  SharePoint 2007 utilities for administrators and developers. Floating...

SharePoint 2007 – No parameterless constructor defined for this object

I needed to edit a page layout in a Publishing Site and I was adding a custom web part using SharePoint Designer. Everything seemed to be working fine (the...

How to upload a site template

public static SPFile UploadWebTemplate(string siteUrl, string templatePath) { using (SPSite site = new SPSite(siteUrl)) { SPDocumentLibrary templates = (SPDocumentLibrary)site.GetCatalog(SPListTemplateType.WebTemplateCatalog);  System.IO.FileInfo fileInfo = new System.IO.FileInfo(templatePath); byte bytes = System.IO.File.ReadAllBytes(fileInfo.FullName);  return templates.RootFolder.Files.Add(fileInfo.Name, bytes); } }

Installing MOSS 2007 RTM on a farm running MOSS 2007 Beta2 TR

Dêem uma espreitadela a este excelente post do Shane Young, MVP em Sharepoint, que contém instruções (com ilustrações) sobre como fazer o upgrade da versão Beta2 TR para a versão RTM...

Bussiness Data Catalog on SharePoint

0
Today, i was looking to the TechNet videos for SharePoint and i found some interesting videos about Business Data Catalog (BDC). If you known what’s this feature, you can...

How to Optimize a SharePoint Server 2007 Web Content Management Site for Performance

In any web site, performance should be among the main concerns (especially if a large amount of users is expected) and SharePoint web sites are no exception. This MSDN...