Sorry for my english, i'm french canadian.
Hi, this is my problem. First, I have a html file with form. In this form, I have some <input> and <textarea>. See below. After that, all information are submit to asp file. In the asp file, I want to subit all information but, with the name and the textarea, only the first word are submit. Example: if the name is "Joe Sakik" in the email, I only have Joe. Same thing for the message. See below for the code (partially) of the asp file.
Thanks for your help
HTML FILE
...
...
<td width=145>Name:</td>
<td width=228><input type="text" name="name" size=30 maxlength=30 ></td>
...
<td width=145>Commentaire/Modification</td>
<td width=228><textarea name="message" cols=30 rows=4></textarea></td>
<td></td>
...
END HTML FILE
ASP FILE
...
<FORM...
...
response.write "<input type=""hidden"" name=""Nom"" size=""30"" maxlength=""30"" value=" & nom & ">"
...
response.write "<input type=""hidden"" name=""Message"" value=" & message & ">"
...
</FORM>
Hi, this is my problem. First, I have a html file with form. In this form, I have some <input> and <textarea>. See below. After that, all information are submit to asp file. In the asp file, I want to subit all information but, with the name and the textarea, only the first word are submit. Example: if the name is "Joe Sakik" in the email, I only have Joe. Same thing for the message. See below for the code (partially) of the asp file.
Thanks for your help
HTML FILE
...
...
<td width=145>Name:</td>
<td width=228><input type="text" name="name" size=30 maxlength=30 ></td>
...
<td width=145>Commentaire/Modification</td>
<td width=228><textarea name="message" cols=30 rows=4></textarea></td>
<td></td>
...
END HTML FILE
ASP FILE
...
<FORM...
...
response.write "<input type=""hidden"" name=""Nom"" size=""30"" maxlength=""30"" value=" & nom & ">"
...
response.write "<input type=""hidden"" name=""Message"" value=" & message & ">"
...
</FORM>