L
Laurent Bugnion
Hi,
AJAX doesn't say much about the response format. The server-side service
provider specifies the format.
If you're talking about ASP.NET AJAX (ex ATLAS), then t's not just AJAX,
it's web services, which implies a SOAP formatting of the response.
You'll have a proxy on the server, representing ("translating") the C#
object in a JavaScript object.
If that's the case, check the ASP.NET AJAX documentation. If that's not
the case, then you must give more details about the server-side code.
HTH,
Laurent
Hi
i have the following class
Public Class ShipmentClass
Public RatedShipment As RatedShipmentClass()
Public Class RatedShipmentClass
Public GuaranteedDaysToDelivery As String
Public ScheduledDeliveryTime As String
Public Code As String
Public MonetaryValue As Double
End Class
End Class
in javascript i want to know the values contained
i am using ajax and want to know what the array contains at specific indexes
ex response.value[0] ??? i want to know the monetaryvalue for each row,
assuming there are about 7 rows
TIA
Barry
AJAX doesn't say much about the response format. The server-side service
provider specifies the format.
If you're talking about ASP.NET AJAX (ex ATLAS), then t's not just AJAX,
it's web services, which implies a SOAP formatting of the response.
You'll have a proxy on the server, representing ("translating") the C#
object in a JavaScript object.
If that's the case, check the ASP.NET AJAX documentation. If that's not
the case, then you must give more details about the server-side code.
HTH,
Laurent