In VS2008 (Tools -> Options, Text Editor, HTML, Format, Tag Specific Options) you can control the automatic formatting of most tags.
However, I'd like to have VS automatically format my @p Page directive so that instead of:
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Foo.aspx.vb" Inherits="WebRoot.Foo"
MasterPageFile="~/WebRoot.Master" %>
I get:
<%@ Page Language="vb" AutoEventWireup="false"
CodeBehind="Foo.aspx.vb"
Inherits="WebRoot.Foo"
MasterPageFile="~/WebRoot.Master"
%>
Is this possible?