Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I already asked this question once

Status
Not open for further replies.

kevin197

Programmer
Mar 21, 2002
88
GB
I already asked this question once in the perl forum
thread219-461835 they said I might have better luck here.

I'm trying the get 3 buttons in a row with different hidden fields but the </FORM> tag always makes the next button go on the line below.

Is there any way I can get the </FORM> tag to NOT start a new line?
 
Are all of the buttons on the same form?

If you are using 3 separate forms then put them into a table...

<Table><tr>
<td><form name=&quot;form1&quot;><input type=&quot;button&quot;></form></td>
<td><form name=&quot;form2&quot;><input type=&quot;button&quot;></form></td>
<td><form name=&quot;form3&quot;><input type=&quot;button&quot;></form></td>
</tr></table>

Please explain a bit more what the situation is... Get the Best Answers! faq333-2924
Is this an asp FAQ? faq333-3048

mikewolf@tst-us.com
 
Thanks alot, the tables work great, quick reply too!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top