J
jty202
Am I able to use ASP.net to multithread retrieve webpages?
Are there examples of using multithread in ASP.net?
Are there examples of using multithread in ASP.net?
jty202 said:OK specifically, I have a list of webpages I want to retrieve and
parse for information.
I want to allow the user to select which sites to retrieve and parse.
When the user enters the selection, I want to spawn a thread to
retreeve and parse for each webpage. After each thread have finish
parsing the data, it puts the extracted data in one common data
holder and the thread finishes. When all the threads finished, I want
to use the data holder to display the data in results page. So thats
the multithreading I want to do.