Remove ' single quotes in Classic asp
- by asdf
Field = "columnName"
value = '2,4'
query = ""&Field&" in("&value&")"
here the query will be : columnName in('2,4')
but i want it to be : columnName in(2,4)
how to remove the single quotes
Please help ASAP