如何获取页面方法对象值

时间:2013-09-17 09:28:13

标签: c# javascript asp.net c#-4.0

我在aspx页面中使用了以下页面方法。 Page方法返回超过1000行。但是成功结果警报只返回“[object] [Object]”字符串。我怎样才能得到返回字符串。

 function getName()
 {
    PageMethods.getAdCodeInfo(onSuccess(),onError());
 }

 function onSuccess(result)
 {
    alert(result);//Result Returns more than 1000 lines string
 }

 function onError(error)
 {
    alert("error "+error);
 }

1 个答案:

答案 0 :(得分:0)

 function onSuccess(result)
 {
    if(result && result.length>0){
        for(var i=0;i<result.length;i++){
             alert(result[i].prop); // prop is the property what you want to alert.
        }
    }
 }