I am passing a string called searchterm(MPBDSUP500MUW) to a page below
SKUNo = Request.QueryString("searchterm"
SQL="SELECT * FROM VIPS_Products WHERE SKU='SKUno'AND active=1"
set search=objconn.execute(SQL)
but i always get no results back. If i replace the sql to look like this
SQL="SELECT * FROM VIPS_Products WHERE SKU='MPBDSUP500MUW'AND active=1"
then the correct record is found, can someone please tell me what I am doing wrong!?
cheers!