All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----net.strandberg.html.SubmitButton
The class SubmitButton is used to create HTML Submit Buttons to be used in Forms. To create a submit button, inside an HTML form, that looks like this:
you would need HTML code like this:
<INPUT TYPE="SUBMIT" VALUE="Press here to send request">which is created by this Java code:
SubmitButton sb = new SubmitButton("Press here to send request"); String myString = sb.toHTML();
public SubmitButton(String label)
public String toHTML()
public static void main(String args[])
All Packages Class Hierarchy This Package Previous Next Index