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 ...