I am in the HTML editor (building an ASP.NET MVC view) and coding up HTML.
The editor is handy with intellisense for various attributes, but when I select whatever VS2008 offers, it never places double quotes around them, as HTML says you should.
For instance:
<head runat=
offers server
, but when I select it, I get:
<head runat=server
instead of
<head runat="server"
Is this a setting somewhere?