T
tshad
I have pages that are identical except for the middle of the page to the
right where I do all my work.
<html>
<head>
</head>
<body>
<table>
<tr>
<td>
<table>
<tr>
<td>
<form>
<asp:...>
<asp:...>
...
</form
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
This works fine.
But now I need to add an <asp:Label> and maybe an <asp:textbox> just below
the <body> tag.
Do I need to move the <form> to just after the <body> and the </form> to
just before the </body>?
There is a lot of objects such as images and flash that will now be inside
the forms tag.
Is this going to be a problem? Will it slow the page down doing this?
Thanks,
Tom
right where I do all my work.
<html>
<head>
</head>
<body>
<table>
<tr>
<td>
<table>
<tr>
<td>
<form>
<asp:...>
<asp:...>
...
</form
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
This works fine.
But now I need to add an <asp:Label> and maybe an <asp:textbox> just below
the <body> tag.
Do I need to move the <form> to just after the <body> and the </form> to
just before the </body>?
There is a lot of objects such as images and flash that will now be inside
the forms tag.
Is this going to be a problem? Will it slow the page down doing this?
Thanks,
Tom