我有任何方法可以循环访问从javascript中的web方法返回的DataTable列 WebMethod就像这样
[WebMethod]
public static DataTable GetDataTable()
{
// connecting Database and execute Query that retrieving Data Into
//TargetTable
return TargetTable;
}
我需要遍历TargetTable Rows列
我用过了
var tblData = PageMethods.GetDataTable();
但它返回undefined;