Monday, August 26, 2013

Create Connection String in Asp.net using web.config file

Hello Friends, Today I am writing this post because of I found out that beginners got a problem to create connection with database in web config file in asp.net. So, Solution is here. Enjoy it..... Web Config File <configuration>   <connectionStrings>     <add name="nameofConnection" connectionString="Data Source=servername; Initial Catalog=DatabaseName; User ID=UserName; Password=Password;"/>   </connectionStrings>   <system.web>     <compilation debug="false" targetFramework="4.0"...


Sunday, August 25, 2013

Creating a virtual directory in IIS 7.5 and 7.0

Hello Friends, Many times we face the problem to host our website on local machine to createa virtual directory, So solutions is here for creating virtual directory in IIS 7.5 and 7.0. Since IIS 7, there exists a separate concept for a virtual directory and an application. You can map a virtual directory to a physical directory that is located on a local  a or remote computer. The physical directory (under the specified name of the virtual directory) then becomes part of the application's URL. An application, on the other hand, is a group...


Friday, August 23, 2013

Object Oriented Programming (Oops) Concepts

Hello Friends, Today I am writing this post because of this is very important question in interview . And Before starting programming you should be about the concepts of Oops. What is OOP?  The object oriented programming is commonly known as OOP. Most of the languages are developed using OOP concept. Object-oriented programming (OOP) is a programming concept that uses "objects" to develop a system. A programming object has an ability to perform actions and has attributes. It performs just like real world entities for e.g. a motor bike. A bike performs actions such...


Thursday, August 22, 2013

Debug Editor Shortcut Keys in Visual Studio

Hello Friends, Today I am writing this post because of debugging is very critical part of developing and using debugging best shortcut we can do debug faster and smoother, So lets use it next time in your project. Use the following key combinations while you are debugging your project. Note:  You can change or create keyboard shortcuts in Keyboard of the Environment options in the Options dialog box. 1.             Display documentation for the active window .... F1 2.            Display a system menu...