hey guys i am downloading data from url by make http request and then displaying data on mobile but as data is huge it takes lot of time to load the page so do you have solution for it or you know how to asynchronous loading content in windows mobile 6.5 in c# with example if any.........................
feedback
|
|
Download the data on a background thread. When downloading is complete either use an event to notify the UI that the data is ready or call a method that updates the UI (via Control.Invoke). | |||
feedback
|