I have a situation where user requests to do a long running process. I planing to start it on another thread in code-behind and return message to user "processing". Then every couple of seconds or so I will poll(via asynch call) the thread for its status. When thread is done I want to show success message.
Question, how do I poll a thread once the original request is complete?
As far as I understand, Page object will spin off a separate thread. When request is complete, the Page object is no longer there...but what about that thread? How do I get the status of that thread that I created?