Asp.Net

[Asp.Net][bleft]

C#

[C%23][bsummary]

MVC

[MVC][grids]

SQL

[SQL][twocolumns]
latest posts

Ref Vs Out Keywords in C#

Ref and out parameters are used to pass an argument within a method. In this article, you will learn the differences between these two pa...

Copy a table into new table with and without data - SQL Server

This article explains  how to copy an existing table to new table in SQL Server. Lets see how to copy an existing table to new table in ...

Why we use Static Class

Struct in C#

A struct uses syntax similar to a class. It is a type definition. A struct type is a value type that is typically used to encapsulate smal...

Difference Between ViewData, ViewBag and TempData with Example

Introduction: In ASP.NET MVC there are three ways - ViewData, ViewBag and TempData to pass data from controller to view and in next reques...

Understanding jQuery Ajax - to async or not ?

Introduction: This article explains a clear understanding on making synchronous and asynchronous ajax calls through jQuery ajax method. ...

How to find second highest or maximum salary of Employee in SQL - Interview question

Introduction: In this section we will write SQL query to get second highest salary of Employee. Before writing query its good to be famili...