G
Guest
Hi
I have asked a similar question on the web services discussion group, but the question is a bit more related to ASP.Net. Basically I have a ASP.Net application that calls a web service asynchronously. This is fine. My problem is that when I make a call to the web service asynchronously when I get the return which is passed into a static method I cannot reference any Web Contorls to paste the return values into from within the static method.
I have been advised to create a static field and add the value retuned to the static methos to the static field which should be referenceable from all methods. Again fine.
However my question is how do I then tell the cntrol that will display my returned value to pick it up?
A typical sequence would b
1. Client makes async call. Passes in static methos name to send the results to on completion
2. browser can do wor
3. static method picks up result,
4. needs to tell asp.net to now pick up the result and show it
point 4 is my problem
Any help appreciated
I have asked a similar question on the web services discussion group, but the question is a bit more related to ASP.Net. Basically I have a ASP.Net application that calls a web service asynchronously. This is fine. My problem is that when I make a call to the web service asynchronously when I get the return which is passed into a static method I cannot reference any Web Contorls to paste the return values into from within the static method.
I have been advised to create a static field and add the value retuned to the static methos to the static field which should be referenceable from all methods. Again fine.
However my question is how do I then tell the cntrol that will display my returned value to pick it up?
A typical sequence would b
1. Client makes async call. Passes in static methos name to send the results to on completion
2. browser can do wor
3. static method picks up result,
4. needs to tell asp.net to now pick up the result and show it
point 4 is my problem
Any help appreciated