Link to home
Start Free TrialLog in
Avatar of westdh
westdhFlag for United States of America

asked on

asp: having a problem transfering html name and email address to contactform.asp

Having a problem transfering html name and email address to contactform.asp.
I have included the html form, and where it is failing in the contactform.asp. the following  response.write are blank all i get in the return msg. is: test , name and email are blank, i.e. empty

response.write("test: " + request.Form("name") + "  " + request.Form("email"))

something is wrong but where.



<form action="contactform.asp" method="post" enctype="multipart/form-data" name="contactform">

<table width="500" border="0" cellspacing="4" cellpadding="0" id="contactform">
<tr>
<td width="178">Name</td>
<td width="322" align="left"><input type="text" name="name" id="name" /></td>
</tr>
<tr>
<td>Address</td>
<td align="left"><input type="text" name="address" id="address" /></td>
</tr>
<tr>
<td>City</td>
<td align="left"><input type="text" name="city" id="city" /></td>
</tr>
<tr>
<td>State</td>
<td align="left"><input name="state" type="text" id="state" size="10" />
&nbsp;Zip <input name="" type="text" size="4" /> </td>
</tr>
<tr>
<td>Email (required)</td>
<td align="left"><input type="text" name="email" id="email" /></td>
</tr>
<tr>
<td>Phone</td>
<td align="left"><input type="text" name="phone" id="phone" /></td>
</tr>
<tr>
<td>Best time to call</td>
<td align="left"><select name="bestTime" id="bestTime" value="Choose one...">
<option>Choose one...</option> 
<option>Morning</option>
<option>Afternoon</option>
<option>Evening</option>
</select>
</td>
</tr>
<tr>
<td>Message</td>
<td align="left"><textarea id="message" cols="45" rows="5"></textarea></td>
</tr>
<tr>
<td>&nbsp;</td>
<td align="left">&nbsp;</td>
</tr>

<tr>
<td>&nbsp;</td>
<td align="left"><input type="submit" name="button" id="button" value="Submit" /> &nbsp;
<input type="reset" name="reset" id="reset" value="Reset" /></td>
</tr>
</table>
</form>

=============================================

<%
Const cdoBasic = 1 'Use basic (clear-text) authentication.
Const cdoSendUsingPort = 2
'cdosys related
Dim iMsg
Dim iConf
Dim Flds
'mail related
Dim strMsg
Dim strTo
Dim strCC
Dim strFrom
Dim strSubject
Dim strTextBody

'==================begin your configuration
'you must have a username and pass word or you will not be able to send
'
Dim sendusername	: sendusername	= "info@supertechfbs.com"
Dim userpassword	: userpassword	= "xxxxxx"
Dim smtpserver	 : smtpserver	= "mail-09.name-services.com"

'Dim sendusername	: sendusername	= "diane@dianewestdesign.com"
'Dim userpassword	: userpassword	= "xxxxxx"
'Dim smtpserver	 : smtpserver	= "mail-09.name-services.com"
'end your configuration

response.write("test: " + request.Form("name") + "  " + request.Form("email"))

if (len(TRIM(request.Form("name"))) <> 0) and (len(TRIM(request.Form("email"))) <> 0) Then

Open in new window

Avatar of pateljitu
pateljitu
Flag of Canada image

In your <Form> tag you are using enctype="multipart/form-data", when user submits the form are they uploading any file, if not please remove that line and try form submit again.

For tag will look like this:

<form action="contactform.asp" method="post" name="contactform">
Avatar of westdh

ASKER

I remove the enctype="multipart/form-data" tag I did this also before I call expert-tek.
I install this <form action="contactform.asp" method="post" name="contactform">


and I still do not get a response form the html page.
even though it is transfing the page to the contactform.asp I am still not getting a response from name or email ..

also I have an html form (duplicating contact.html) inside the contactform.asp if the contact.html page is not filled out ....It works.
ASKER CERTIFIED SOLUTION
Avatar of pateljitu
pateljitu
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of westdh

ASKER

That did not work either.