Forum Moderators: open
I do have a little but annoying problem concerning a mail form.
I would like to use some required fields.
The form is used in a standard htm file which is called within an iFrame.
The code is as following :
<form action="http://***/cgi-bin/mailto.exe" method="post">
<input type=hidden name="sendto" value="***@***.***">
<input type=hidden name="email" value="***">
<input type=hidden name="server" value="10.0.0.5">
<input type=hidden name="subject" value="Invulformulier">
<input type=text name="name" size="58">
.
.
.
<input type="hidden" name="resulturl" value="http://***/***/***.htm">
<input type="submit" value="submit">
<input type="reset" value="Clear form">
</form>
I used following codes to try to create a required field, but neither of them works :
<input type=required:text name="name" size="58">
or
<input type=hidden name="required" value="name,...">
Can someone please help me?
Thank you.
your question is little unprecise so it's not easy to help. please consult the manual of your mailto script, what the exact mechanism for creating required fields is.
anyway the following code does not work because that type of an input field does not exist:
<input type=required:text name="name" size="58">
- hakre
<INPUT type="hidden" NAME="name_required" value="Please enter your name.">
I think I'm going to use Dundas Mailer in the future. This will be faster, has more features to configure and is ASP based.