Hi, wondering if anyone can help me
I have created a form and user id, password that allows the user to submit and all this works fine however I want to create another button next to the ' > ' submit button within the form that customers can press that will direct them to a page called '/register.asp' button name 'Register' - however when I create this button it 'submits' the data
See code below
Grateful if anyone can offer any help
Its a ork project that I have to finish asap
Thanks Hemong
[code=html]<form name="formLogin " method="post" onSubmit="javas cript:submitLog in(formLogin);" target="_blank" >
User name
<input type="text" name="username" class="input" size="20" />
Password
<input type="password" name="password" class="input" size="15" />
<label>
<input type="submit" name="submit" value=" > " />
</label>
<label></label>
<input type="submit" name="Submit" value="Register " /></a>
</form>[/code]
I have created a form and user id, password that allows the user to submit and all this works fine however I want to create another button next to the ' > ' submit button within the form that customers can press that will direct them to a page called '/register.asp' button name 'Register' - however when I create this button it 'submits' the data
See code below
Grateful if anyone can offer any help
Its a ork project that I have to finish asap
Thanks Hemong
[code=html]<form name="formLogin " method="post" onSubmit="javas cript:submitLog in(formLogin);" target="_blank" >
User name
<input type="text" name="username" class="input" size="20" />
Password
<input type="password" name="password" class="input" size="15" />
<label>
<input type="submit" name="submit" value=" > " />
</label>
<label></label>
<input type="submit" name="Submit" value="Register " /></a>
</form>[/code]
Comment