Hello,
I'm working on a multi-languages site on Windows 2003 Server that is indexed with the MS Indexing Service with his own catalog.
On every page we have the following meta tag to differentiate the language:
<meta name="language" content="xx">
(xx stands for the language: us, fr, de ...)
Here is the SQL command that I pass to the provider :
Code:
strSQL = "SET PROPERTYNAME 'd1b5d3f0-c0b3-11cf-9a92-00a0c908dbf1' PROPID 'language' AS language TYPE DBTYPE_STR;"
strSQL = strSQL & "SELECT DocTitle, vpath, filename, size, write, characterization, language "
strSQL = strSQL & "FROM SCOPE() WHERE CONTAINS ('" & strFilter & "')"
The problem is that my property 'language' is always empty.
My goal is to use the language property in the WHERE clause..!
Am I doing all wrong?
Thanks.
davide
PS: Here is where to find this non working method...
http://msdn.microsoft.com/library/de...webov_9s13.asp