Display image while populating c# object from web service
response = service.getInfo(request);
How can I display an image while my response object is being populated? Service is a web service located on another se开发者_StackOverflow社区rver that I have no control over.
Any help is greatly appreciated.
Here is one way to do it.
The bottom line is that you will need some asynchronous process going on. And that implies AJAX. The library or methodology you use is up to you.
精彩评论