Failed to extract the cab file in the solution
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
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
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
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
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
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
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
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...
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
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.