Hi Jim,
Does this also include the lost spaces in color coded code in code blocks? When you copy from Visual Studio, paste in the editor and wrap it in a code block, all spaces are lost; not just the indenting. This not only makes the code illegible, but also corrupts it. For example, the following code is messed up:
Code:
<asp:LoginID="Login1"runat="server"CssClass="SomeClass"CreateUserUrl="SomePage.aspx">
<LoginButtonStyleBackColor="Green"/>
</asp:Login>
Removing the color coding using the "Remove Text Formatting" button fixes the problem:
Code:
<asp:Login ID="Login1" runat="server" CssClass="SomeClass" CreateUserUrl="SomePage.aspx">
<LoginButtonStyle BackColor="Green" />
</asp:Login>
Notice how the first block has no spaces between the various attributes and values.
Is this being fixed and tested as well?
Imar