Are there any options (third-party or otherwise) to improve code folding within the Source Editor for HTML/ASP.Net?
The #region directive makes it easier to create your own sections, but it doesn't work in the Source Editor. Ideally I'd like to fold away larger areas of code than between the server-side code blocks. But below shows what happens...
<% // Search Results Section <-- Just want folding here
foreach (int item in list) { %> <-- but it is here also
Number : <% =item %>
<% }
//etc...
%>
Code folding falls between <% and %> which isn't really where I want it. I'm trying to get sections of code.