Wael Dalloul
Wael Dalloul

Reputation: 23044

Shortcut key for moving between source and design view in ASP.net Pages

I know that F7/Shift F7 will switch between Code behind and ASPX pages, but what's the shortcut to switch between source and design view in Visual studio for asp.net Pages?

Upvotes: 5

Views: 9670

Answers (2)

Ajay Saksena
Ajay Saksena

Reputation: 41

There are three view in visual studio. Desing, Split and Source. We can switch between them using Ctrl+PageUp and Ctrl+PageDown keys.


Ctrl + PageUp

<<-- Design <<-- Split <<-- Source <<-- Design <<-- Split <<-- Source <<--

Ctrl + PageDown

-->> Design -->> Split -->> Source -->> Design -->> Split -->> Source -->>


So for changing view From Design to Source use Ctrl+PageUp

and for changing view From Source to Design use Ctrl+PageDown

Upvotes: 3

IsmailS
IsmailS

Reputation: 10863

Ctrl-Page Down and Ctrl-Page Up

Upvotes: 21

Related Questions