I have a rather tricky situation. I am using an ASP:Repeater which is bound to a SOAP datasource returning the below object structure.
Path: Array[6]
0: Object
Direction: "Departing"
Message: ""
Operator: "myciti"
RouteColor: "#a7a9ac"
RouteName: "Airport"
Stop: Object
Name: "JFK"
Location: Object
Name: "Airport"
__proto__: Object
Time: "07:10"
Type: ""
Vehicle: ""
I can easily access all the first tier variables, such as "Time" by using Eval as such:
<%# Eval("Time")%>
My problem is how would I access the nested objects still using EVAL from the ASPX page? For example how would I get to the "Name" value of the "Stop" object within this array which has the value "JFK"?