Check boxes with CDONTS

They have: 32 posts

Joined: Jan 2001

I ned to add approx. 10 check boxes or option buttons to my
CDONTS form how should I do this? I have not worked a lot with check boxes in HTML or ASP any help would be greatly appreciated. Thank you,
Mike

Here is some of my CDONTS code:

Set Message = CreateObject("CDONTS.NewMail")

'*** Set the from, to, and
'*** subject fields.
Message.From = Request.Form("email")
Message.To = "[email protected]"
Message.Subject = "Mail from Web Site"

'*** Add any additional informtion
'*** you want to the message text.
BodyToSend = Request.Form("name") & vbcrlf & _
" has submited the following info:" & vbcrlf & vbcrlf & _
" E-Mail: " & Request.Form("email") & vbcrlf & vbcrlf & _
"Remarks:" & vbcrlf & Request.Form("bodytext")

Mark Hensler's picture

He has: 4,048 posts

Joined: Aug 2000

put the checkboxes on the page wherever you wish....

then...

'blah (some code) blah

'*** Add any additional informtion
'*** you want to the message text.
BodyToSend = Request.Form("name") & vbcrlf & _
" has submited the following info:" & vbcrlf & vbcrlf & _
" E-Mail: " & Request.Form("email") & vbcrlf & _

" Checkbox1: " & Request.Form("Checkbox1") & vbcrlf & vbcrlf & _ "
" Checkbox2: " & Request.Form("Checkbox2") & vbcrlf & vbcrlf & _
'put more here if desired

"Remarks:" & vbcrlf & Request.Form("bodytext")
'

I've not used checkboxes much myself, but I believe that they send the value if checked, and null if unchecked. Juts play with it. Have it Response.Write a few times until it starts writing what you want, then hook up the CDONTS again....

Good Luck,

Mark Hensler
If there is no answer on Google, then there is no question.

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.