Skip to main content

Shortcut keys inMSDOTNET 2015


when ever we want work with MS.net we have to learn about some keys which can help to improve our work force in development area .i  got some shortcut key in msdn ,You can view all of the keyboard shortcuts for Visual Web Developer.
we can create our own shortcuts by doing the following:
 on the Tools --> Options;
it will open dialog box  of the Options,
 select Environment and then Keyboard.
we have to select the Show all settings check box in order to view the Keyboard setting.

Shortcut
Description
CTRL+B
Switches the selected text between bold and normal.
CTRL+I
Switches the font style of the selected text between italic and roman.
CTRL+U
Switches the font style of the selected text between underline and roman.
CTRL+SHIFT+L
Displays the Bookmark dialog box.
CTRL+L
When text is selected, displays the Hyperlink dialog box.
CTRL+SHIFT+W
Displays your Web page in the default browser.
CTRL+ALT+UP ARROW
Inserts one row above the selected row in the table.
CTRL+ALT+DOWN ARROW
Inserts one row below the selected row in the table.
CTRL+ALT+LEFT ARROW
Inserts one column to the left of the selected column in the table.
CTRL+ALT+RIGHT ARROW
Inserts one column to the right of the selected column in the table.
CTRL+SHIFT+Q
Switches the display of marker icons for HTML elements that do not have a visual representation, such as comments, scripts, and anchors for absolutely positioned elements.
CTRL+PAGE DOWN
CTRL+PAGE UP
Switches from Design view to Source view and vice versa.
CTRL+Q
Displays a 1-pixel border around HTML elements that support a border attribute and have it set to zero, such as tables, table cells, and divisions.
CTRL+K, CTRL+X
Inserts a snippet.

thank you 
blnreddy




Comments

Popular posts from this blog

connection pooling

Explain about Connection Pooling? Connection pooling is a concept which deals with database connection. A Connection Pool maintain last database connection active state when connection is ideal. Whenever you want to make a transaction with database once again you have to open connection when it is ideal, instead of that connection pooling will maintain open and reusable connections. A Connection Pool is released from the buffer or memory when the last connection to the database is closed. By default Connection Pooling turned on in ado.net; whenever you want to change it off, you have to specify Pooling = false in the connection string . We can specify limit to connection pooling by default the maximum limit is 100. You will specify in connection string. It will improves the performance and scalability of the application It is managed by a program in ado.net that we called as Pool Manager. This program will ma...

Conformation MessageBox

This BLOG POST demonstrate how to use the   MessageBox result in window form programming. to full fill this task we will depend on DialogResult    property in Windows Forms..                   when we are doing windows programming using Csharp ,to show the intermediate result  we will display by messageBox MessgeBox is having one main  function show  .it returns DialogResult Value.when user used  MessgeBox to display the data,user has to click default buttons OK,cancel,Abort,Ignore etc to close  MessgeBox. this we can get from  MessgeBox and it will be saved in  DialogResult variable . DialogResult is consist different button values using ENUM data types . Requirements The following list outlines the recommended hardware, software, network infrastructure, and service packs that you need: ·          Microsoft Visual Studio ...