Hi,
How to bind a gridview when using pagemethods, based on the following scenario:
i have the following javascript :
Pagemethods.LoadGrid(OnSuccess);
function OnSuccess(result)
{
//bind grid view
}
c# code
{
//return datatable to be loaded to the grid
}
Go to the complete details ...