Tuesday, June 10, 2014

Accessing the Grid View controls using the javascript in ASP.Net

Create the one empty project application and write this code

Introduction
In this article we are going to learn the topic of how to manipulate (getting the grid rows and columns data) 
the grid view rows and columns using the Jquery.

In the server side I am writing the one sample data table data to bind to grid .


Coding

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;


Read More »