XMLSearch case sensitivity
I'm trying to do a query using xmlsearch, but it is case sensitive as to the text being searched. If you do a search for "network" it does not return anything, however if you do a search on "Network" it returns the data. How can you get the search not to be case sensitive and to return the data regardless of the case? (code is below)
<cfhttp url="http://www.server/webpage.cfm" method="GET">
</CFHTTP>
<CFSet xml=CFHTTP.FileContent>
<CFSet xmlDoc = XMLParse(xml)>
<cfset results = XMLSearch(xmlDoc, "//job[TITLE_STRING='#form.JobTitle#']")/>
