aTekTipsUser
Programmer
I have the following html and it is causing a break after the </form>. How can I have a form within a table without the break after the </form>. We are using a software that requires the textboxes to be within a form inorder for the software to read the textbox. It looks fine in firefox and netscape, but in internet explorer it is causing the unwanted break.
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table width="205" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="125">
<form action="" method="post" name="test" >
<input name="test1" type="hidden" value="C10-112-001" >
<input name="test2" type="text" value="1" size="2" maxlength="2" border="0"> some.text
</form>
</tr>
</table>
</body>
</html>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table width="205" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="125">
<form action="" method="post" name="test" >
<input name="test1" type="hidden" value="C10-112-001" >
<input name="test2" type="text" value="1" size="2" maxlength="2" border="0"> some.text
</form>
</tr>
</table>
</body>
</html>