I have the following problem. I have a page and in the Document Ready event I call a web service that returns a string value. After that the value is assigned to a Label control (visible). After that I want to use the value in the Code Behind but I don't know how to get it.
All the events Page_load, Page_Prerender, ... have passed before the value has been retrieved from the service so I can't get it in any of them.
If I try to get it on a button click the page does a postback and loses the value.
I tried to find the control via Request.Form but it still returns nothing.