During the design html pages or aspx pages, I like to do the pure coding without Html Designer. The problem is that I like to have the following format on html page for better readability.
<div>
<% if (1 == 1) { %>
Hello
<% } else { %>
World
<% } %>
</div>
As you can guess, whenever you type '}' or ';' or etc, visual studio try to do the auto format and change to the following format
<div>
<% if (1 == 1)
{ %>
Hello
<% }
else
{ %>
World
<% } %>
</div>
The question is "Is it possible to disable auto formatting just only for HTML pages on VS2010? (NOT for C# code, I still like to have auto formatting for C# pages)"