I have a webmethod in asp.net project i wanna pass a listview in jquery ajax method but i dont now how can i detect elements of listview and using them.folowing code is my c# code.bt i need jquery code
if (ck != null)
{
reqnum[0, 0] = "@RequestingBranchID";
reqnum[0, 1] = ck["BranchID"];
reqnum[1, 0] = "@ProviderBranchID";
reqnum[1, 1] = customer.ToString();
DataTable dt = SqlCommands.FillData(out OutStatus, out OutMessage, "BSD.SW_Boxes_StockOfProviderAndRequestingBranch", CommandType.StoredProcedure, reqnum);
List<DataRow> rows = dt.Rows.Cast<DataRow>().ToList();
int x=rows.Count;
return rows;
}