i have a process that makes calls to a webservice and handles the responses, some of the responses require some user input so they can be handled. When user input is required i want to trigger an event, in the event handler i want to display a form to the page then wait until the user input is posted back then have the event handler return the user input to the calling method.
I am having difficulty with the making the event handler wait for the post back before returning the input, i don't even know if its possible.