Ask a Question related to Dreamweaver AppDev, Design and Development.
-
Balds #1
emailing a form in .net
I have a current form on my companies website that is a request for information
form. it is down in vbscript .net I needed to add a dropdown list to the form
and have but don't know how to send the value of the drop down list in the
email: here is my code: Everything works fine except for the Quick tour date
selected line. That is the line that is trying to send the data from the
ddDate drop down list. How do I send that value? objMM.Body = 'At ' +
DateTime.Now + ' Somebody requested a Demonstration from the Great Lakes
Website ' & _ 'Their Information is Listed Below ' &
vbCrLf & _
'---------------------------------------' & vbCrLf & vbCrLf & _
'Quick Tour Date Selected: ' + ddDate.SelectedItem & vbCrLf
& _ 'Name: ' + txtName.Text & vbCrLf & _ 'Email
Address: ' + txtEmail.Text & vbCrLf & _ 'Phone: ' +
txtPhone.Text & vbCrLf & vbCrLf & _ 'Agency Name and
Address:' & vbCrLf & _ txtAgency.Text & vbCrLf & _
txtAddress.Text & vbCrLf & _ txtCity.Text + ', ' +
txtState.Text + ' ' + txtZip.Text & vbCrLf & vbCrLf & _
'Questions or Comments:' & vbCrLf & _ txtComments.Text &
vbCrLf & vbCrLf & _TextText
Balds Guest
-
Emailing a form using PHP5
I'm trying to send and email from a form page to me using PHP5. When I click send I get the folowing message. Warning: mail() : SMTP server... -
Emailing from Dreamweaver
I am currently formatting an email announcment in Dreamweaver then opening in Frontpage and using the send to function to email the page. I need to... -
Emailing Form Data
I have a form set up to called data and when the submit button is pressed the data is emailed to me. That works fine. I am now trying to use the... -
FDF emailing
I have been reading everything in here about this but still need 1 question answered. I know that you cannot email back a form with Acrobat reader... -
emailing from trigger
Does anybody have a suggestion for the best way to send email from a trigger? Is it even possible? I'd like to send a notification everytime a... -
darrel #2
Re: emailing a form in .net
> How do I send that value? objMM.Body = 'At ' +
&> DateTime.Now + ' Somebody requested a Demonstration from the Great Lakes
> Website ' & _ 'Their Information is Listed Below '_> vbCrLf & _
> '---------------------------------------' & vbCrLf & vbCrLf &You need to be more specific. Probably:> 'Quick Tour Date Selected: ' + ddDate.SelectedItem
ddDate.SelectedItem.value.tostring
or
ddDate.SelectedItem.text.tostring
-Darrel
darrel Guest



Reply With Quote

