vote up 0 vote down star

Hi,

I want to place a custom webpart on the main page of my sharepoint portal that will look through a specific list. I want also to look for the information in the specific fields (like name, surname, phone number etc.). In MOSS 2007 we have Microsoft.Office.Server.Search namespace but is it possible to write this kind of webpart in WSS?

flag

77% accept rate

2 Answers

vote up 1 vote down check

Hi Kyrisu

In WSS you have two options:

1) You can execute a CAML query against the specific list using SPList.GetItems

2) Use KeywordQuery or FullTextSqlQuery from the Microsoft.SharePoint.Search.Query namespace

link|flag
Good (and correct) answer. – Kirk Liemohn Oct 17 at 0:44
vote up 0 vote down

SharePoint web parts have full access to the SharePoint object model, including being able to access list and list items. Now, that doesn't include any kind of search indexing, so if this list is really large, iterating through it to find interesting results might not be a very good idea. (Hence search being a paid MOSS feature....)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.