I have a textfield I'll call txtTest.

I cannot seem to enter a value in the textfield and pass the value of the
textfield using:

varRequestParm = Request.Form("txtTest")
Set rsTemp = server.createobject("adodb.recordset")
CPC_Connection.WebQry_List varRequestParm, rsTemp

If the textfield is instead a dropdown list everything works fine.

What could be going on?

RE: passing value from Textfield by CoreyThomasMCSEMCSAMCDBA

CoreyThomasMCSEMCSAMCDBA
Mon Mar 17 09:47:02 CDT 2008

Can you post more of your code? What error do you get? Have you tested the
adodb connection connection manually? What happens if use use
Request("txtTest") instead of Request.Form("txtTest")?


-Corey

"RICK" wrote:

> I have a textfield I'll call txtTest.
>
> I cannot seem to enter a value in the textfield and pass the value of the
> textfield using:
>
> varRequestParm = Request.Form("txtTest")
> Set rsTemp = server.createobject("adodb.recordset")
> CPC_Connection.WebQry_List varRequestParm, rsTemp
>
> If the textfield is instead a dropdown list everything works fine.
>
> What could be going on?
>
>