Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 968
Wael Dalloul Avatar asked Apr 26 '10 12:04

Wael Dalloul


People also ask

What is F12 in Visual Studio?

Peek Definition Alt+F12 If you've installed Visual Studio 2013, there's a new keyboard shortcut -- Alt+F12 -- that will give you a preview of the method being called inline. You can use the Esc key to close the preview.

What is the shortcut key for switching between the open tab in Visual Studio?

Hold down the Alt key and press F7 repeatedly until you select the window you intend to switch to.

How do you go back in VS?

By default, Alt+Left navigates back, and if you remove the Alt+Right shortcut for Edit. CompleteWord in Microsoft Visual Studio, Alt+Right navigates forward. (The "bindings" are active if no other commands are bound to the shortcuts.)


2 Answers

Ctrl-Page Down and Ctrl-Page Up

like image 171
IsmailS Avatar answered Nov 02 '22 05:11

IsmailS


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

like image 24
Ajay Saksena Avatar answered Nov 02 '22 06:11

Ajay Saksena