vote up 0 vote down star

I'm using Visual Studio 2008 for an ASP .Net application, and Visual Studio keeps adding blank lines to my aspx file whenever I save, switch to design mode and back to code view, switch to split mode, or switch between files. Before I save, I will have:

                        </ContentTemplate></asp:UpdatePanel>
                    </ContentTemplate>
                </ajax:TabPanel>
            </ajax:TabContainer>

Then, it will magically transform into:

    </ContentTemplate></asp:UpdatePanel>


</ContentTemplate>















</ajax:TabPanel>
                    </ajax:TabContainer>

I know it's mostly an aesthetics issue, but it's also adding 17 lines of nothing to each tab container (and making the file that much longer to scroll through) and it's very annoying. I've checked that I don't have a misplaced quotation mark, there's no misaligned tags earlier in the file, any ideas?

flag

2 Answers

vote up 1 vote down check

The only time I've seen Visual Studio do something close to this is when the XML/HTML in question is invalid, for example you are missing a closing tag somewhere.

link|flag
vote up 0 vote down

I can't say I've ever experience this with any Visual Studio yet, but try this

Ctrl-E, D command will automatically reformat the document. (Assuming C# Development Enviroment)

Ctrl-K, Ctrl-D for Web Development Enviroment

If the document remains as it is with the incorrect spacing then the auto format is the problem. Simple disable the auto-format inside Options->Text Editors->HTML->Formatting

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.