Hi there, I have a problem. I am coding using VS2008. I am calling webservices from my Javascript Page. An example
Services.ChangeDropDownLists.GetNowPlayingMoviesByLocationSVC(
blah,
OnSuccessMoviesByRegion,
OnError,
OnTimeOut
);
after execution it goes to the function OnSuccessMoviesByRegion.
But if i put the Services in a loop (a simple for loop)
Services.ChangeDropDownLists.GetNowPlayingMoviesByLocationSVC(
blah[i],
OnSuccessMoviesByRegion,
OnError,
OnTimeOut
);
OnSucessMoviesByRegion function won't execute (but the service call executes n times successfully But i must have the function cos i am returning a value through it.
What am I missing? Is that the typical behaviour? Any alternatives?