divided
divided

Reputation: 1319

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 server that I have no control over.

Any help is greatly appreciated.

Upvotes: 0

Views: 617

Answers (1)

Bryan
Bryan

Reputation: 8788

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.

Upvotes: 1

Related Questions