|
getSafeQuery (strInput)
This method returns a string with all the spelling errors removed. This is useful for search result optimization.
Example
<%
set objDYM = server.createObject("ASPDidYouMean.DidYouMean")
strQuery = "Any strinng at all"
strSafe = objDYM.getSafeQuery (strQuery)
response.write strSafe
set objDYM = nothing
%>
|