Author: bartbutell | Posted on: 2/15/2010 2:19:59 PM | Views : 1140

I am using ASP.NET AJAX 3.5
I have a web service that is invoked by the ScriptManager that is attempting to return a DataTable to the receiving javascript.
<asp:ScriptManager ID="ScriptManager1" runat="server"> <Services> <asp:ServiceReference Path="~/RentRollAJAXService.asmx" /> </Services> </asp:ScriptManager> My service is called this way from my javascript function:  <script type="text/javascript"> function GetRentRoll(month, year) { RentRollAJAXService.GetRentRoll(month, year, OnSuccess, OnError ); } function OnSuccess(result) { alert(resu ...

Go to the complete details ...