Thread in ASP.Net

  • Thread starter Thread starter Humair Ahmed
  • Start date Start date
H

Humair Ahmed

Hi
I wana to ask that
can i make script in ASP.Net using thread?
Regards
Humair
 
As long as you have a good needle.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Technically, you can but you will run into problems because the script must
be streamed out to the client thru the response object. The response object
is owned by the main thread and such cross pollination is forbidden. As an
alternative, you can build the script on a thread, pass it back to the main
thread and then the main thread can stream it out to the client.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top