harmmeijer
Programmer
When I view an aspx file in design mode and then go to html view all my layout is gone.
VS.net makes an unreadable mess of it.
For example:
Turns into:
<asp
anel id="pnlContent" style="Z-INDEX: 103; LEFT: 145px; POSITION: absolute; TOP: 129px" runat="server" Height="205px" Width="533px"> <!--#include file="sample"--></asp
anel>
If many html elements are nested like this with an incredably long list of propertys then puttig the lot on one long line is a sure way to never understand the html code later.
Can I change some setting that prevents vs from doing this?
Greetings, Harm Meijer
VS.net makes an unreadable mess of it.
For example:
Code:
<asp:Panel
id="pnlContent"
style="Z-INDEX: 103; LEFT: 145px; POSITION: absolute; TOP: 129px"
runat="server"
Height="205px"
Width="533px">
<!--#include file="sample"-->
</asp:Panel>
<asp


If many html elements are nested like this with an incredably long list of propertys then puttig the lot on one long line is a sure way to never understand the html code later.
Can I change some setting that prevents vs from doing this?
Greetings, Harm Meijer