Concurrent processing of ASP.NET pages



We all know that IIS and asp.net are suppose to be muti-threaded
applications running on a pre-emptive multi-tasking model. But, what I
have
found is that under the default installation of ASP.NET, aspx pages get

executed serially. I know that it's easy to say that this can't be
right,
but I have found threads where others have confirmed this same
behavior.


The situation is _very_ easy to reproduce. Simply place two aspx pages
on a
web site, on the one page put some code that will take a bit to execute
(say
a while loop) and on the other page simply put some text (perhaps
"hello").
Now open two browser windows, in the first browser open the long
running
page, now in the second window open the hello page. What you will find
is
that you will not receive the hello page until the long running page
completes and is sent to the browser. The pages are running serially
on the
server!


How does one configure asp.net so that the pages run under a preemptive

multitasking model?

.



Relevant Pages

  • Re: ASP Web Form Control not displayed!
    ... > (.aspx) file in Browser, I could see the text in the Label Control but I ... If I add an HTML Button control, I can see this button in the browser. ... then you probably need to register ASP.NET with IIS (did you install IIS after ...
    (microsoft.public.dotnet.languages.vb)
  • Re: ModalWindow not firing Page_Load.. please help
    ... This posting is provided "AS IS" with no warranties, and confers no rights. ... >I have an aspx page that calls a modal dialog which loads another aspx ... Only after i've closed and reopened the browser, ... > browsed to the original page and called the modal window does ...
    (microsoft.public.dotnet.framework.aspnet)
  • Local ASPX pages wont diaplay - IE and Firefox ask to open or save file
    ... I have a set of ASPX pages that work fine on my home computer, and on a server at work. ... I installed IIS and dot.net on my new computer, but every time I try to access the ASPX pages locally (using http://localhost/main.aspx in the browser address bar), the browsers don't display the pages. ...
    (microsoft.public.dotnet.framework.aspnet)
  • Re: Printing aspx pages in Iceweasel gets truncated?
    ... Printing an .aspx page only one page ... the rest of the web browser information is lost. ... the server uses ASP to generate the html file you see. ... it's a gecko problem konqueror should do fine. ...
    (Debian-User)
  • Re: Caching Output HTML
    ... into PlaceHolder controls in an aspx page that served as a template. ... page, cache that HTML, return the HTML to the requesting browser. ... Subsequent requests for the same page would return the HTML from the cache. ...
    (microsoft.public.dotnet.framework.aspnet)

Loading