I'm having a difficult time with a form I've created. The odd thing is, it works when I use the GET function along with Request.Querystring("field"), however, if I change it to POST with Request.Form("field") it doesn't work. Any suggestions?
Well, I feel like an idiot. I had wanted to use the same format as a form I used for an upload, so I copy and pasted. I simply forgot to remove the enctype="multipart/form-data" from the <form> tag... That's what was causing problems. Thank you very much though.