mobile ads

Featured Posts Coolbthemes

Please give your comments on posts.

Monday, 1 September 2014

Datepicker - jQuery UI

link use in header section ------------------------         <link rel="stylesheet" href="../../Styles/jquery-ui.css" />      <link rel="stylesheet" href="../../Styles/runnable.css" />      <script  type="text/javascript" src="../../Scripts/jquery-1.9.1.js"></script>      <script  type="text/javascript"...

Tuesday, 3 December 2013

Difference between Stored Procedures and Function in SQL

Stored Procedure  A Stored Procedure is a program (or procedure) which is physically stored within a database. The advantage of a stored procedure is that when it is run, in response to a user request, it is run directly...

Friday, 29 November 2013

Constructors

A constructor is a method in the class which gets executed when its object is created. Whenever a class or struct is created, its constructor is called. Even if we don't write the constructor code, default constructor will be created...

Monday, 25 November 2013

Sending SMS from ASP.NET

Write a method in class file public static void CreateRequestTOSENDSMS()         {             string url = "SMS gateway url, which will...

Why we use Static Keyword?

The static keyword defines, that the class or property or method we declare as static does not require a previous instance of an object. In the other hand, a static method for example cannot use any instance method / instance property...