私はasp.netプロジェクトにwebmethodを持っています.jquery ajaxメソッドでリストビューを渡したいのですが、リストビューの要素を検出してそれらを使用する方法がわかりません.次のコードは私のC#コードです.bt jqueryコードが必要です
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;
}