/    Sign up×
Community /Pin to ProfileBookmark

Pass parameters to webservice by AJAX

Hi,
I followed the video [URL=”http://www.asp.net/learn/ajax-videos/video-118.aspx”]“How Do I: Implement the AJAX Incremental Page Display Pattern?”[/URL] in calling a web service by AJAX.
The code goes like that:

<“javascript” type=”text/javascript”>

function pageLoad() {
ret = WebService.FetchPartOne(OnCompleteOne, OnTimeOut, OnError);
}

function OnCompleteOne(result) {
document.getElementById(‘div1’).innerHTML = result;
}

function OnTimeOut(result) {
document.getElementById(‘div1’).innerHTML = ‘Timeout’;
}

function OnError(result) {
document.getElementById(‘div1’).innerHTML = ‘Error’;

}

// –>

I need to pass parameter to OnComplete, to set the target div to fill with the webservice result:
Something like this:
function OnCompleteOne(result, [B]TagetID[/B]) {
document.getElementById([B]TagetID[/B]).innerHTML = result;
}
What’s the right syntex to OnCompleteOne, and PeopleService.Search?
Thanks!

Z

to post a comment
JavaScript

0Be the first to comment 😎

×

Success!

Help @z0333 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.5,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...