Found this here:
http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/indexa12.htm

Verity searches are case-sensitive only when the search term is entered in 
mixed case. For example, a search for zeus finds zeus, Zeus, or ZEUS; however, 
a search for Zeus finds only Zeus.

To have your application always ignore the case the user types, use the LCase 
function in the criteria attribute of cfsearch. The following code converts 
user input to lowercase, thereby eliminating case-sensitivity concerns:

<cfsearch name="results" 
   collection="#form.collname#"
   criteria="#LCase(form.criteria)#"
   type="#form.type#">


Will

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232893
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to