Advertisement
Guest User

Untitled

a guest
Jul 19th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <cfloop from="1" to="#listLen(variables.fieldlist)#" index="variables.index">
  2.     <cfif listGetAt(variables.fieldlist, variables.index,',') eq "ProductNo">
  3.         <cfset MyQueryString = '[ProductNo] = ' & #form.sSearch# & ' '>
  4.      </cfif>
  5.      <cfif listGetAt(variables.fieldlist, variables.index,',') eq "ProductName">
  6.         <cfset MyQueryString2 = '[ProductName] Like ' & chr(34) &#form.sSearch# & chr(39) &' '>
  7.      </cfif>
  8.      
  9.     <!--- <cfif variables.index LT listLen(variables.fieldlist)> <cfset MyQueryString = MyQueryString & " OR "> </cfif>--->
  10.    
  11.      <cfset MyCompleteString = MyCompleteString & PreserveSingleQuotes(MyQueryString)>
  12. </cfloop>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement