| |
|
|
|
|
KeywordAND Property
It is a string that represents AND boolean operator in search expression. It is useful for using on web sites on different languages than english, to make more visitors-friendly searching.
[Visual Basic .NET]
Public Property KeywordAND() As String
|
[C#]
public String KeywordAND() {get; set;}
|
String
"AND"
You can change value of KeywordAND property to "Y", what is more common to Spanish visitors. After that, search expression "manzana y plátano", control will understand that as "manzana AND plátano" and return records that contains both manzana and plátano terms.
|
|
|
| |