QUOTE(brainfreeze @ 2 Jul, 2009 - 04:04 AM)

Thanks, I appreciate the help. Actually, there are a few thing I figured out and managed to get it working:
1) Had to give textbox a name tag ie. name="Text1"
2) In order to set the value to my variable I had to declare it first on its own, then set it using request.form("Text1")
3) Had to fix my select statement (Thanks again for pointing that out)
Now I just have to figure out why my rs dosen't work! But the original problem has been solved. Hope this can help someone else in the future if they get stuck doing classic asp like me.
Thanks
Ok, AT THE VERY LEAST SANITIZE THE INPUTS if you are are going to directly create a SQL string.
Why?
To avoid sql injection attacks.
I once dealt over an entire weekend with the resultes of an automated sql injection attack which inserted injected javascript script tags in a varchar and text fields; thereby inserting javascript into a whole bunch of pages, potentially doing who the @!#%@$ knows what to the website because nobody before me thought to sanitize their inputs. It was absolutely freaking rediculous.
To sanitize text, this is all you have to do:
strEmail = replace(request.Form("txtEmail"),"'","''")
A better way would be to use SqlParameters, because then the sql statement would be compiled only once...and I'd show it to you this moment, but I admit I hate the way you have to handle them in classic asp: I can't ever remember how to create them with the proper integer codes...