Jump to content

Retreiving text from a text box


Lestat

Recommended Posts

I have a simple feedback form that contains three input boxes, and a textbox. I want to send an email using CDO which contains the strings typed into the three input boxes and the text inside the textbox.Now using Request.Form("...") does the job for the three inout boxes. But this method doesn't work for the textbox. In other words, I can't transfer the contents of the textbox (which should contain the body of the message) to the CDO email object. Is there a function to do this that I'm unaware of?

Link to comment
Share on other sites

the request.form command DOES get the value of a textbox too.to make sure you are getting the data try inserting in the page that recieves the form the command

textbox_value = request.form("textbox_name")response.write(textbox_value)

and see if it returns what you send.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...