1
vote
1answer
288 views

Sort by modified date in custom search core results webpart

I have created a custom search results web part which implements some simple sorting, for example i have this piece of code which allows me to sort it desc/asc by title: CoreResultsDatasource ...
0
votes
0answers
54 views

SharePoint OOTB Search Web Part Needs Tweaking

I have a SharePoint search web part on my page. I was under the understanding that security trimming is automatically incorporated into the query in but all users can see certain pending documents. ...
1
vote
1answer
90 views

Caml accent-sensitive

I wonder if the caml supports accent-sensitive, I'm doing a query and have many records with an accent and realized that these items are not appearing What can I do in this case? I can use any search ...
0
votes
0answers
17 views

Simple SQL field query

Is it possible to get the guid of the web in which a 'record' from a sql query belongs to? So for example, say I bring back a document in my sql query - is there a field available against this record ...
2
votes
1answer
62 views

Is it possible to enable PDF Crawling in Foundation 2010 Search?

I am trying to enable PDF crawling for Foundation Search V4, but have only been able to find resources for PDF crawling for the complete versions of 2010 - Some of the instructions and procedures vary ...
1
vote
2answers
190 views

How do I bind JavaScript call to GetQuerySuggestion to SearchBoxEx control

Resolved below Well the title says most of it but here is the background: On the search results page, when you type in the search box it does some soap calls in JavaScript too "GetQuerySuggestion". ...
0
votes
1answer
151 views

Sharepoint 2007 WarmUp Script (Memory Leak Possibly)

I was wondering if there is any way I can get a SPsiteCollection object using a URL + if I can dispose it using "using" keyword as well. I want to go through all the SPWebAPplications in a Local ...
4
votes
3answers
2k views

How to prevent a SharePoint web part from being crawled

We have a custom web part for our SharePoint 2007 farm that calls a very large report (lots of views and stored procs being called) that is used on hundreds of pages on team sites and MySites. We get ...
2
votes
1answer
437 views

Using Foundation Search and Search Server Express simultaneously

i am using the Sharepoint api to return search results which i am getting with Microsoft.SharePoint.Search.Query.KeywordQuery. On my development machine this is working fine. On the Server where ...
3
votes
2answers
325 views

Regex Query Against FAST Search 2010

I'm looking for a way to do searches with FAST Search Server 2010 based on Regular Expressions. For instance, I'd like to be able to use: ^\d{3}-\d{2}-\d{4}$ And have it return any content ...
0
votes
1answer
386 views

SmallSearchInputBox on the search result page

I have a custome master page. On this I am including the SmallSearchInputBox control at the top of the page. <asp:ContentPlaceHolder ID="PlaceHolderSearchArea" runat="server"> ...
1
vote
4answers
1k views

CAML query to find a value that does not begin with

I want to build a CAML query to search for all title fields that do NOT begin with a certain value: something like this: Where Title NOT BeginsWith 'myvalue'. How can i do that in my CAML query?
0
votes
1answer
174 views

Custom Web part based on search object model to query accross site collections

I'm looking for examples how to build a web part (code) that queries all doc libs in a web application (Done by a created search scope, a scope exists with all the docs from all doc libs) and displays ...
0
votes
1answer
352 views

access Sharepoint MOSS 2007 advanced search programmatically

In one of my custom master page template, I have a text box where a user can search various documents from different sources (which have already being crawled...), I want to programmatically provide ...
2
votes
1answer
1k views

Sharepoint 2010 FullTextSqlQuery using LIKE predicate does not find anything

I'm trying to execute a search in SharePoint 2010 with the FullTextSqlQuery class: using (SPSite site = new SPSite("http://localhost")) { using (FullTextSqlQuery query = new FullTextSqlQuery(site)) ...
-2
votes
1answer
1k views

How to search in SharePoint with C# + CAML

I am developing a search web part. I am confused about which technique I have to use. Let's say I have a column in my Contact List called "Details", and one of the list items for this column contains ...