Posted by Mike Massonnet on 02/05/06 01:00
JF01 wrote:
> Hi,
>
> I have an XHTML page with the following DTD Declaration: <!DOCTYPE
> html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
>
> Inside, I have a form with the following format:
>
> <form action="login.asp" method="post" id="frm1">
> <input type="text" size="30" name="email" id="email">
> <input type="button" value="Register" class="formbutton1" id="submit1"
> name="submit1" onclick=javascript:callsubmit();>
>
try with something more comform :
<input type="text" size="30" name="email" id="email" />
<input type="button" value="Register" class="formbutton1" id="submit1"
name="submit1" onclick="callsubmit()" />
--
The following two statements are usually both true:
There's not enough documentation.
There's too much documentation.
-- Larry Wall in <199709020026.RAA08431@wall.org>
[Back to original message]
|