D
Doug
I'm working in an DotNet 2003 web application. I build an html page
that looks something like this:
<td>
<fieldset>
<legend>Report:</legend>
....more html here...
</fieldset>
</td>
<td>
<asp:textbox id="txtName" Runat="server" />
</td>
periodically when I come back to this to make changes, it'll change to
look like this:
<td>
<fieldset>
<legend>
Report:</LEGEND>
....more html here...
</FIELDSET>
</TD>
<td><asp:textbox id="txtName" Runat="server"></asp:textBox></TD>
????
Why does it do this? Is there a way to make it stop? I find this very
hard to read.
that looks something like this:
<td>
<fieldset>
<legend>Report:</legend>
....more html here...
</fieldset>
</td>
<td>
<asp:textbox id="txtName" Runat="server" />
</td>
periodically when I come back to this to make changes, it'll change to
look like this:
<td>
<fieldset>
<legend>
Report:</LEGEND>
....more html here...
</FIELDSET>
</TD>
<td><asp:textbox id="txtName" Runat="server"></asp:textBox></TD>
????
Why does it do this? Is there a way to make it stop? I find this very
hard to read.