Does any one know of a way to control how Visual Studio handles curly braces in Html view?
Type...
<% if (true) { %>
Then
<% { %>
And visual studio will auto format it as such.
<% if (true)
{ %>
<% } %>
Not a major issue but nest a few of these using foreach and it gets messy.