views:

211

answers:

1

Does anyone know how to configure visual studio to correctly format code segments within a View

This annoys the crap outta me!:

<select>
<%
foreach(Height height in ViewData.Model.Heights)
{%>
<option value="<%=height.ID %>"><%=height.Value%></option>
<%
}%>
</select>

It should be like this:

<% foreach(Height height in ViewData.Model.Heights) { %>
    <option value="<%=height.ID %>"><%=height.Value%></option>
<% } %>
</select>

I can fix it manually but whenever I reformat, or change some of the code close to the braces it screws up again!

+1  A: 

After the auto formatting takes place hit cntrl-z, it will undo the auto-formatting only and not rearrange your code.

jfar