Remove ' single quotes in Classic asp

Posted by asdf on Stack Overflow See other posts from Stack Overflow or by asdf
Published on 2010-03-17T10:51:23Z Indexed on 2010/03/17 11:01 UTC
Read the original article Hit count: 176

Filed under:
|
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

© Stack Overflow or respective owner

Related posts about asp-classic

Related posts about query