Is it possible to return the page response to the user before you finish the work of your entire server part?
Those. I have a cheap hosting account without a database, but I would like to register a specific event by calling the web service on another, more expensive hosting account (i.e. a very slow registration operation)
I really don't want the user to have to wait for this slow registration operation to complete before their page is displayed.
Do I need to twist a new thread or make an asynchronous call? Or can I return the page and then continue to work happily in the same thread / code?
Using ASP.Net (webforms) C # .Net 2.0 etc.
source share