SQL Constraints

SQL Constraints are set of rules applied to a SQL tables to validate data. The purpose…

Types of variables in c#

            The c# support two major variable types, they are “Value type and Reference type”. Int,…

What is a View in sql server and its advantages ?

  A view is nothing more than a saved query.  A view can also be considered…

How to use date in javascript and the different date methods?

The Date object is a datatype built into the JavaScript language. Date objects are created with…

What are the different action method’s return type?

1) ViewResult : Used to return a view to render html in the browser. this is…

The requested page cannot be accessed because the related configuration data for the page is invalid in MVC

The error message “The requested page cannot be accessed because the related configuration data for the…

How to move second div to first in mobile view using css ?

we may need to show divs in different ways in mobile views. Like the same now…

How to use switch statement in c# ?

Switch statement is used to check a variable with a set of conditions called cases. We…

Array in Javascript

Array is a variable that is used to hold more than one value in a single…

What is comments and types of comments in javascript?

                          For two reasons we can have comments in the code, one is to define the…