Dynamic Div in Jquery
Download Source Code
Jquery No Conflict and ready event
let me tell you that what is the purpose of document ready function in jQuery and purpose of no conflict function in jQuery Download Source...
Custom Data Table in asp.net Using C#
DataTableEx.aspx: DataTableEx.aspx.cs using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; public partial class DataTableex : System.Web.UI.Page { protected void...
Delegates in C#
Delegate : It is a reference type variable and holds reference to a method. At runtime method reference can be changed. Base Class: System.Delegate Declaration of delegate: delegate Example : public delegate int CalculateArea (string s); Call Delegate: Using Invoke...