Visual Studio has some useful shortcut keys which are useful when you need to perform different actions quickly without selecting the actions from the menu. Open the root folder. Ctrl+K ,Ctrl+O Debug F5 Pause F6 Step Into F11 Cut Ctrl + X Copy Ctrl+ C Find Ctrl + F Find in files Ctrl+Shift+F Find […]
Archives for July 2017
Create confirmation mail in MVC after user registration
Many applications provides the registration option to the users.While providing details as a part of the registration process apart from the username and password,user is also required to provide the email address.Asking the user for the email address as a part of the registration process is good option since it can be used in the […]
Understanding URL encoding
URLs are used for locating resources on the internet and intranet.URL have a specific format which browers understands.Servers use the URL to locate the resource and send it to the browser.URL is a string of characters.The characters allowed in the string are: Alphabets Numeric characters Some special characters If you have a string which contains characters […]
HTML character encoding
When writing HTML you write markup using ASCII character set.ASCII character set consists of 128 characters. The ASCII character set consists of : alphanumeric characters Numbers from 0 to 9 English letters from A to Z Special characters such as! $ + – ( ) @ < In HTML you specify the character set to […]
Displaying Toast Notification in Android
Toast notification is a mechanism in Android application to display a message for short duration to the user.The Toast notification is displayed on top of the current screen and occupies partial screen space.It is like a popup in windows applications.It goes away itself after a short duration. To display toast notification in Android you need to […]