Apr 26, 2001 #1 KryptoS Programmer Feb 7, 2001 240 BE Hi, me again I have something like this: if oRS1(0) = box1 then ... else ... end if oRS1(0) is my primary key of that recordset and box1 = Request.QueryString("Box1". why doesn't this work?
Hi, me again I have something like this: if oRS1(0) = box1 then ... else ... end if oRS1(0) is my primary key of that recordset and box1 = Request.QueryString("Box1". why doesn't this work?
Apr 26, 2001 #2 link9 Programmer Nov 28, 2000 3,387 US Try this so you can see both values -- response.write(oRS1(0) & "<br>" response.write(box1) it should stick out when you see the values -- It's probably because they are of different data types, but it's hard to tell simply from your post... If it isn't obvious after you do that, post more code. Paul Prewett Upvote 0 Downvote
Try this so you can see both values -- response.write(oRS1(0) & "<br>" response.write(box1) it should stick out when you see the values -- It's probably because they are of different data types, but it's hard to tell simply from your post... If it isn't obvious after you do that, post more code. Paul Prewett