In the codebehind of the search page, try (in Page_Load)
SearchResult1.Configuration.StopWords.Clear()
an alternative to this would be to write an empty stoplist.txt to the index directory when the index is first created
File.Delete( Path.Combine (ProdConfig.IndexDirectory, "stoplist.txt"))
File.Create( Path.Combine (ProdConfig.IndexDirectory, "stoplist.txt")).Close()
something like that, not sure how Delete handles situation where the file doesn't exist already.
Jim
-your feedback is helpful to other users, thank you!-your feedback is helpful to other users, thank you!