I have a query like:<br><br>-----------------<br><br>StrQuery = "Select * from Customer where CustID = " & Cint(Request("CustID"
)& ""<br><br>---------------------<br><br>This works perfectly and takes the numeric value off the text box on HTML.<br><br>My problem is I have a numeric field called "CustID", when I try and do the same query using <br><br>----------------------<br><br>StrQuery = "Select * from Customer where CustID = " & Cint(rs("CustID"
)& ""<br><br>OR <br><br>StrQuery = "Select * from Customer where CustID = " rs("CustID"
& ""<br><br>-------------------------<br><br>I get an error, this time I'am getting the numeric value through another recordset named "rs". Do I have to convert the field into a number? if so how do I do that if I haven't done it already? whats wrong?<br><br>grateful for any help, :]<br>