Are there any options (third-party or others) for improving code folding in the Source Editor for HTML / ASP.Net ?
The #region directive makes it easy to create your own partitions, but it does not work in the source editor. Ideally, I would like to flush larger areas of code than between blocks of code on the server side. But below is what happens ...
<%
foreach (int item in list) { %> <-- but it is here also
Number : <% =item %>
<% }
%>
Code bending falls between <% and%>, which is actually not the way I want. I am trying to get sections of code.
source
share