Download WSS 3 and MOSS 2007 Trial Version

0
Microsoft has released WSS 3 and MOSS 2007 trial version.Microsoft Office SharePoint Server 2007http://www.microsoft.com/downloads/details.aspx?FamilyID=2e6e5a9c-ebf6-4f7f-8467-f4de6bd6b831&DisplayLang=enWindows SharePoint Services 3.0http://www.microsoft.com/downloads/details.aspx?FamilyID=d51730b5-48fc-4ca2-b454-8dc2caf93951&DisplayLang=en

How to create an item in a discussion list

Creating a discussion in discussion list is different from creating a simple list item. The code for creating a discussion item is: using (SPSite site = new SPSite("SITE URL")) { ...

SharePoint 2007 Tools

Encontram-se de seguida algumas tools interessantes para SharePoint 2007. SharePoint Tips Utility Pack por Ishai Sagi This time its a pack of small utilities made to make life easier for me as a...

Application Templates for Windows SharePoint Services 3.0

Vão ser lançadas em breve (início de 2007) 40 Application Templates para WSS 3.0. Estas templates contêm vários cenários "out-of-box" para a plataforma WSS 3.0, permitindo agilizar a criação de soluções que respondam a necessidades específicas das organizações, quer em...

MOSS 2007 – How To Customize Look and Feel

Um conjunto muito interessante de artigos sobre customização de sites usando o MOSS 2007. MOSS2007 – Look and Feel (Part 1 - The Beginning) MOSS2007 – Look and Feel...

SharePoint 2007 e ASP.NET 2.0

0
Algumas das coisas engraçadas que se pode fazer com o ASP.NET 2.0 e o SPS 2007   1) Criar uma web-part que suporte drag/drop,user-personalization e costumização, e utiliza-la numa aplicação ASP.NET...

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...

How to Create a SharePoint Server 2007 Custom Master Page and Page Layouts for...

I found another very useful article in the MSDN web site for SharePoint developers that are working on WCM. This article provides a step-by-step guide on how to build...

How to upload a list template

public static SPFile UploadListTemplate(string siteUrl, string templatePath) { using (SPSite site = new SPSite(siteUrl)) { SPDocumentLibrary templates = (SPDocumentLibrary)site.GetCatalog(SPListTemplateType. ListTemplateCatalog);  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); } }

Change SharePoint Diagnostic Logging

0
Hi, When you change SharePoint Diagnostic Logging to use verbose, the log files will growth rapidly, so you should only use verbose mode for short periods of time. ...