G
Guest
Hi there,
I have a placeholder, table, tr and td object in this way in an .aspx file
<asp
laceholder id=plhGrid Visible="False" Runat="server">
<table width="960" border="1">
<tr>
<td>
... some other stuff
</td>
</tr>
</table>
</asp
laceholder>
I've always been manually programming the pure html like this to extinguish
where each code block ends. Remark that at the ending tags
</..>
</..>
</..>
I always want to have exactly ONE blank character between the ending tags to
see where these code blocks end.
and when changing between design and html modein the vs.net 2003 environment
it automatically changes it to this
<asp
laceholder id=plhGrid Visible="False" Runat="server">
<TABLE width="960" border="1">
<TR>
<TD>...some stuff</TD></TR></TABLE>
</asp
laceholder>
Any suggestions that works?
TIA
Kenneth P
I have a placeholder, table, tr and td object in this way in an .aspx file
<asp

<table width="960" border="1">
<tr>
<td>
... some other stuff
</td>
</tr>
</table>
</asp

I've always been manually programming the pure html like this to extinguish
where each code block ends. Remark that at the ending tags
</..>
</..>
</..>
I always want to have exactly ONE blank character between the ending tags to
see where these code blocks end.
and when changing between design and html modein the vs.net 2003 environment
it automatically changes it to this
<asp

<TABLE width="960" border="1">
<TR>
<TD>...some stuff</TD></TR></TABLE>
</asp

Any suggestions that works?
TIA
Kenneth P