SharePoint

SharePoint is a web-based collaborative platform that integrates with Microsoft Office. Launched in 2001, SharePoint is primarily sold as a document management and storage system, but the product is highly configurable and usage varies substantially between organizations.

Failed to extract the cab file in the solution

0
This error can occurr when you have special characters, like (^ ~), on file names defined on the feature.xml or ir elementmanifest.xml.Today i found a new reason to provoke this...

How to use FullTextSqlQuery to search in WSS

0
First, you have to add the following references: Microsoft.Sharepoint Microsoft.Sharepoint.Search Second: DataTable resultsDataTable = new DataTable();  using (SPSite site = new SPSite("http://server")) { FullTextSqlQuery query = new FullTextSqlQuery(site); query.QueryText = queryText; ...

How to use KeywordQuery to search in WSS

0
First, you have to add the following references: Microsoft.Sharepoint Microsoft.Sharepoint.Search Second: DataTable resultsDataTable = new DataTable();  using (SPSite site = new SPSite("http://server")) {  KeywordQuery query = new KeywordQuery(site); query.QueryText = queryText; query.ResultTypes = ResultType.RelevantResults;   ...

CSS Reference Chart for SharePoint 2007

0
A customização de um site SharePoint (WSS ou MOSS) implica um esforço bastante significativo, incluindo, entre outras tarefas, a customização de master pages e folhas de estilo (ficheiros .css)....

MOSS 2007 and Accessibility

0
A importância da acessibilidade no desenvolvimento dos sites tem vindo a crescer. Cada vez mais, não chega apresentar a informação, mas também apresentá-la de forma a que seja acessível...

Office Developer How-to Center

0
A Microsoft disponibliza um portal com um conjunto de "How-Tos" sobre Office Development incluindo Office Client, WSS e MOSS. A lista actual é a seguinte: Access 2007 Add (All) Options to...

SharePoint 2007: Tools Collection

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

List User Profiles from MOSS 2007

0
using (SPSite site = new SPSite(siteUrl)){  ServerContext context = ServerContext.GetContext(site);  UserProfileManager profileManager = new UserProfileManager(context);  foreach (UserProfile userProfile in profileManager)    Console.WriteLine(userProfile.Value);}

Open a website that is using Forms Authentication as its Authentication Provider with SharePoint...

0
There are two ways to do this: The first way is to authenticate via IE first, making sure that you save your credentials. SP Designer should be able to use...

25 Tips to Lockdown Your SharePoint Environment

0
Encontrei no blog do Joel Oleson, um post contendo um conjunto de dicas sobre como tornar mais seguro um ambiente SharePoint.Para mais detalhes, cliquem aqui.