I have qustion on submitting the input fields to the form in
Struts.
if we have a checkbox,a textbox and a submit button. and if we need to send the values typed in the textbox when the submit button is clicked, we normally place these input fields within html:form tags
example:
<html:form action="something.do">
<input type="text" name="txtbox" value=""/>
<html:submit styleId="btnSubmit>Submit</html:submit>
</html:form>
Is there a way in which we don't place them within html:form and still submit the text box value when the button is clicked?
I am aksing this question because, my
jsp page does different things for different kind of buttons, but for position sakes they should be aligned together, but because of html:form tag, i am not able to place them in the positions i need