13

Visual Studio has the option to view html in 3 views: design, split an source. (image from VS2012)

enter image description here

All 3 options seem to have disappeared in Visual Studio 2013.

Any ideas?

Hennes
  • 65,804
  • 7
  • 115
  • 169
Danield
  • 393

2 Answers2

19

Do this:

right click on file which you wish to open.
Then Open with application and choose 

HTML (Web Forms) Editor

Set as default (on right side) if you wish.

pa4k
  • 306
0

Another possible reason (today I encountered it) that the .html file was added to the Solution with Add > Existing Item... > Add As Link. In this case VS never offered the Design view. When I re-added the very same file normally (not “As Link”), the Design view appeared. :(

It's a shame that you cannot ‘Design view’ external .html files that don't reside within the folder tree of your project.

robert4
  • 151