| |
aspprogrammer
Posts: 10
Score: 0
Joined: 6/9/2001
From: Belgium
Status: offline
|
Don't know if this is what you are trying to do or not but I think what you are trying to do is this: request a piece of data from a form, then use that data in conjunction with something else to test a condition. If this is the case, you should assign the form field to a var then add the data to that var. You can then use this to test your conditional (If..Then) in this case. Something like this should work (using your myVar example). Dim myVar Dim myVar2 'set myVar = to whatever myVar2 = Request.Form("item") myVar2 = myVar2 & myVar If myVar2 = whatever then.... Hope this helps,
|
|