使用AjaxPro调Dataset出现问题
服务器端连的方法返回一个DataSet,但没有对象
[AjaxPro.AjaxMethod]
     public DataSet  SetData()
     {
         SqlConnection con = new SqlConnection("Data Source=MS-F64B36A49ABB;Initial Catalog=pubs;Integrated Security=True");
         SqlDataAdapter sda = new SqlDataAdapter("select * from jobs", con);
         DataSet ds = new DataSet();
         sda.Fill(ds, "jobs");  
         return ds;
     }
function Button3_onclick() {
ajaxstudy.SetData(aa);
}
function aa(dst)
{      
     var str=dst.value.Tables[0].Columns.length;
     alert('asdasd'+str);
}
------解决方案--------------------咱们两都聊到70楼了快