[
September Full List
|
Reply
]
Re: Submit Button options
From
Frank
on 12 Sept '00
replying to
"Submit Button" options
posted by David
I'm not entirely sure what you're after, but:
The text on a gray button is defined by the value:
<INPUT TYPE="submit" VALUE="Some Cool Text">
If you want a form button that simply forwards to another URL,
you need to use a specific form like this:
<FORM METHOD="get" ACTION="
http://site.com
">
<INPUT TYPE="submit" VALUE="Go Somewhere Else">
</FORM>
Does this help?
Re: Submit Button options
- David -
12/09/00
Re: Submit Button options
- Frank -
12/09/00
Re: Submit Button options
- David A -
12/09/00
Re: Submit Button options
- Frank -
12/09/00
Reply to this message
Required Details
Your name:
Subject:
Optional Details
Home page title:
Home page URL:
Email:
(if you'd like to receive automatic replies by email)
Your Message
>I'm not entirely sure what you're after, but: > >The text on a gray button is defined by the value: > >
> >If you want a form button that simply forwards to another URL, >you need to use a specific form like this: > >
>
>
> >Does this help?