I want to make a call to client side code - on the server side, I'm going to spin off n-threads to do work
When each thread completes I'd like them to each individually callback a client-side function in order to append the result to an HTML table
I want to make a call to client side code - on the server side, I'm going to spin off n-threads to do work
When each thread completes I'd like them to each individually callback a client-side function in order to append the result to an HTML table
You have 2 options: ajax polling
or signalr
Check this out: http://bsmadhu.wordpress.com/2012/04/30/real-time-web-using-signalr/