Sign in
Mikhail Arkhipov (MSFT)'s WebLog
Visual Web Developer stuff
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Blog Home
Email Blog Author
Share this
RSS for posts
Atom
RSS for comments
Search
Tags
Personal
Rants
Archive
Archives
June 2012
(1)
July 2010
(1)
January 2009
(1)
December 2008
(5)
June 2008
(2)
April 2008
(1)
March 2008
(3)
January 2008
(1)
December 2007
(5)
November 2007
(3)
October 2007
(4)
September 2007
(3)
August 2007
(3)
April 2007
(5)
February 2007
(3)
January 2007
(3)
December 2006
(7)
November 2006
(3)
October 2006
(2)
September 2006
(2)
July 2006
(4)
June 2006
(4)
May 2006
(7)
April 2006
(8)
March 2006
(5)
February 2006
(3)
January 2006
(2)
December 2005
(6)
November 2005
(4)
October 2005
(3)
September 2005
(1)
August 2005
(6)
July 2005
(2)
June 2005
(15)
May 2005
(3)
April 2005
(6)
March 2005
(2)
January 2005
(7)
December 2004
(3)
November 2004
(1)
October 2004
(3)
September 2004
(4)
August 2004
(13)
July 2004
(6)
June 2004
(16)
May 2004
(15)
How to make HTML/Web Form editor faster
MSDN Blogs
>
Mikhail Arkhipov (MSFT)'s WebLog
>
How to make HTML/Web Form editor faster
How to make HTML/Web Form editor faster
Mikhail Arkhipov
9 Jun 2005 2:24 AM
Comments
2
This post
made me thinking what can you do to make Visual Web Developer to behave like Visual Notepad :-). Here is what you can do to switch off certain features and make startup time shorter and editor more responsive.
1. Hide properties window
2. Hide toolbox
3. Disable automatic addition of ID attribute (intrinsic elements only)
Tools | Options | Text Editor | HTML | Miscellaneous - uncheck Auto ID elements on Paste in Source view'
4. Disable event dropdowns
Tools | Options | Text Editor | HTML | General - uncheck 'Navigation bar'.
5. Disable idle time validation
Tools | Options | Text Editor | HTML | Validation - uncheck 'Show errors'.
6. Switch off insertion of the closing tag
Tools | Options | Text Editor | HTML | Format - uncheck 'Auto insert closing tag'.
7. Disable autocompletion
Tools | Options | Text Editor | HTML | General - uncheck 'Autolist members' and 'Parameter information'.
More radical changes:
1. Open ASPX and other Web form files as static HTML pages. You will lose server code intellisense in the Web Form and statement completion and validation of ASP.NET controls won't work.
Go to Tools | Options | Text Editor | Extensions and assign whatever extensions you want to the HTML Editor. Alternatively, right-click on the file in the Solution Explore, choose Open With... and select HTML Editor and click 'Set as Default'.
2. Open HTML pages as well as ASP, ASPX, etc as plain text. The only feature that will be available is colorization of the markup.
Go to Tools | Options | Text Editor | Extensions and assign whatever extensions you want to the text editor. Alternatively, right-click on the file in the Solution Explore, choose Open With... and select Source Text Editor and click 'Set as Default'.
2 Comments
Blog - Comment List MSDN TechNet
Comments
Loading...