vote up 0 vote down star
1

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.

flag

69% accept rate
What's the actual problem? – Phil.Wheeler Jan 2 '09 at 10:18
When I type <% if (true) { %> then <% } %> it converts my code to be <% if (true) { %> <% } %> its just messy and annoying. – bleevo Jan 2 '09 at 10:31

4 Answers

vote up 1 vote down check

Well its not really a sollution, but what i do is that i hit Ctrl+x to undo, and it will undo the formatting - there is not another way that i know off, other that changed it in all C# documents.

link|flag
Sad that you can't set them individually – bleevo Jan 3 '09 at 5:33
vote up 0 vote down

http://forums.asp.net/t/1478453.aspx

there is also a 'formatting' section in the jscript node. that was what my issue was.

link|flag
vote up 0 vote down

As the code is written in C#, it should be governed by the settings in tools | options | texteditor | c# | formatting.

link|flag
So there is not a way to have 1 setting for ASPX pages and another for CS files? – bleevo Jan 2 '09 at 10:46
Don't think so. In the next version of VS we will get html snippets that hopefully be customizable. If you use ReSharper, you might solve this using Live Templates. – Øyvind Skaar Jan 2 '09 at 11:42
vote up 0 vote down

Take a look at tools -> options -> texteditor -> JScript -> Formatting!

link|flag
Not following gave this ago but JScript isnt going to effect ASPX pages (HTML) – bleevo Jan 2 '09 at 10:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.