如何将数据集传递给Jquery函数

人气:508 发布:2022-09-22 标签: jquery asp.net ASP.NET

问题描述

大家好。在jquery函数中查看代码一次我想

Hi all.See the code once in jquery function i want

for (i = 0; i < <big>Dataset rowcount</big>; i++)
{
    for (j = 0; j< <big>Dataset Columscount</big>; j++)
    {
          //Here i Want the Dataset colume and row values
    }
}

如何将该数据集从c#代码传递到客户端jquery脚本,我将使用该数据集 与上面的代码相同

How to Pass That dataset from c# code to client side jquery script and i will use that dataset same as in above code

推荐答案

你的朋友问了类似的问题3小时前 如何将数据集作为参数传递给jquery? [ ^ ] Your friend asked similar question 3 hrs ago How to pass Dataset as a parameter to jquery?[^]

131