In Visual Studio 2005, is there a way to indent correctly the tags in the aspx file (not in .cs files but really in ASPX files which contain HTML/ASP code)?

link|improve this question

1  
Define "correctly" :) – ahockley Mar 10 '09 at 14:32
I was actually just thinking about this a few minutes ago. – TheTXI Mar 10 '09 at 14:32
feedback

5 Answers

up vote 10 down vote accepted

You can fix indenting using the shortcut Ctrl-K+D

link|improve this answer
And it works in 2008 as well. You are my hero for at least the next 5 minutes. – TheTXI Mar 10 '09 at 14:37
yea baby! I wrote this on my whiteboard! – Saif Khan Jul 16 '09 at 15:29
feedback

Those keystrokes translate to:

  • Ctrl-K, Ctrl-D : Edit/Advanced/Format Document
  • Ctrl-A, Ctrl-K, Ctrl-F : Edit/Select All, Edit/Advanced/Format Selection

For some reason, the latter seems to work better for me.

Note, these also work for other file types: C#, VB, XML etc...

link|improve this answer
feedback

Ctrl-A (select all), Ctrl-K-F has worked for me.

link|improve this answer
feedback

XML Editor toolbar -> Format whole document.

link|improve this answer
feedback

You want to go to Tools > Options and then navigate to Text Editor > All Languages > Tabs.

The settings you want are: Under Indenting click the "Smart" Radio box for smart indenting. Under Tab you want tab size 4 and indent size 4. And check the radio button labeled Insert Spaces.

You can also change these settings for each language individually. Also some of them don't have Smart indenting, like html.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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