i have a linkbutton on a page, the event hander for the click event of that button calls a method on an object which in turn makes a call to a webservice, when the webservice returns the object fires an event and an event handler on the page codebehind updates a label on the page. For some reason the label doesn't display the message.
This has been driving me crazy and i can't find anything about it on google. any help would be appriciated.
The webservice is being called asynchronously but the thread is being blocked until it returns. and the labels pre render event is being called after its text is being set by the proxy objects event handler.
All the calls are happening on the same thread, any values i set ,not just the label text, in the event handler are getting reverted to their previous values by the time the pre-render event fires.