jQuery DataTable data population from C# code behind logic
jQuery DataTable data population from C# code behind logic
dipankaronline
Posts: 1Questions: 0Answers: 0
I have one ASP.NET website and populating the gridviews with c# code somewhat like below-
DataSet ds = GetEmployees();
GridView.DataSource = ds;
GridView.DataBind();
now i want to replace the gridview with jQuery DataTable, so do we have any simple way to do this keeping the same codebehind logic, just by making a little change in codebehind i mean. The jQuery DataTable should be populated from c# codebehind logic
DataSet ds = GetEmployees();
GridView.DataSource = ds;
GridView.DataBind();
now i want to replace the gridview with jQuery DataTable, so do we have any simple way to do this keeping the same codebehind logic, just by making a little change in codebehind i mean. The jQuery DataTable should be populated from c# codebehind logic
This discussion has been closed.