Q) How can you asynchronously call a data page?

ashalatha

New member
Suppose your data page has a lot of content, it will take a lot of time to load. Before I reach my next activity (child activity), I want my data page to get loaded. To make things easy, I want to pre-load my data page and keep it ready for the next steps in the activity. Use Load-DataPage.

When you use Load-DataPage, it is asynchronous processing – means it will not happen in the same thread, it will be processed in the background.
 
Top