Click here to Skip to main content
15,888,006 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Deployment problem Pin
eggie527-Dec-03 7:13
eggie527-Dec-03 7:13 
GeneralRe: Deployment problem Pin
SaeidehV27-Dec-03 19:31
SaeidehV27-Dec-03 19:31 
GeneralObserved that the execution of the second request starts only when the processing of the first request is completed Pin
kandasamyg22-Dec-03 18:45
kandasamyg22-Dec-03 18:45 
GeneralRe: Observed that the execution of the second request starts only when the processing of the first request is completed Pin
Colin Angus Mackay22-Dec-03 23:31
Colin Angus Mackay22-Dec-03 23:31 
GeneralRe: Observed that the execution of the second request starts only when the processing of the first request is completed Pin
Ian Darling22-Dec-03 23:51
Ian Darling22-Dec-03 23:51 
GeneralRe: Observed that the execution of the second request starts only when the processing of the first request is completed Pin
hemrajs@bsil.com22-Dec-03 23:53
susshemrajs@bsil.com22-Dec-03 23:53 
GeneralRe: Observed that the execution of the second request starts only when the processing of the first request is completed Pin
Philip Fitzsimons23-Dec-03 4:31
Philip Fitzsimons23-Dec-03 4:31 
GeneralRe: Observed that the execution of the second request starts only when the processing of the first request is completed Pin
Richard Deeming9-Jan-04 7:25
mveRichard Deeming9-Jan-04 7:25 
Make sure you turn off session state for any pages that don't need it, otherwise requests from the same session will be serialized:


...the session state module implements a reader/writer locking mechanism and queues the access to state values. A page that has session-state write access will hold a writer lock on the session until the request terminates.

A page claims write access to the session state by setting the EnableSessionState attribute on the @Page directive to true. (This is the default setting.) A page, though, can also have read-only permissions on the session state, for example, when the EnableSessionState attribute is set to ReadOnly. In this case, the module will hold a reader lock on the session until the request for that page finishes. As a result, concurrent readings can occur.

If a page request sets a reader lock, other concurrently processed requests in the same session cannot update the session state but are at least allowed to read. This means that when a session read-only request is being served, awaiting read-only requests are given higher priority than requests needing a full access. If a page request sets a writer lock on the session state, all other pages are blocked, regardless of whether they have to read or write. For example, if two frames attempt to write to Session, one of them has to wait until the other finishes.

http://msdn.microsoft.com/library/en-us/dnaspp/html/aspnetsessionstate.asp[^]


"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
GeneralHttpWebRequest problems Pin
SpaceWokker22-Dec-03 15:55
SpaceWokker22-Dec-03 15:55 
GeneralRe: HttpWebRequest problems Pin
SpaceWokker22-Dec-03 17:26
SpaceWokker22-Dec-03 17:26 
GeneralString parsing in C# Pin
stephen wilkerson22-Dec-03 7:07
stephen wilkerson22-Dec-03 7:07 
GeneralRe: String parsing in C# Pin
J. Dunlap22-Dec-03 9:15
J. Dunlap22-Dec-03 9:15 
GeneralRe: String parsing in C# Pin
Philip Fitzsimons23-Dec-03 4:36
Philip Fitzsimons23-Dec-03 4:36 
Questionhow use "bitblt" API functiong in vb.net? Pin
hy100021-Dec-03 21:04
hy100021-Dec-03 21:04 
AnswerRe: how use "bitblt" API functiong in vb.net? Pin
Philip Fitzsimons22-Dec-03 4:45
Philip Fitzsimons22-Dec-03 4:45 
GeneralLooking for good .NET book suggestions Pin
Flack21-Dec-03 14:14
Flack21-Dec-03 14:14 
GeneralRe: Looking for good .NET book suggestions Pin
Colin Angus Mackay21-Dec-03 15:07
Colin Angus Mackay21-Dec-03 15:07 
GeneralRe: Looking for good .NET book suggestions Pin
Colin Angus Mackay21-Dec-03 15:11
Colin Angus Mackay21-Dec-03 15:11 
GeneralKey Mapping Pin
Colin Angus Mackay20-Dec-03 15:34
Colin Angus Mackay20-Dec-03 15:34 
GeneralRe: Key Mapping Pin
J. Dunlap20-Dec-03 16:34
J. Dunlap20-Dec-03 16:34 
GeneralRe: Key Mapping Pin
Colin Angus Mackay20-Dec-03 17:09
Colin Angus Mackay20-Dec-03 17:09 
Generalnew Install Problem Pin
Vikingbear20-Dec-03 15:10
Vikingbear20-Dec-03 15:10 
GeneralRe: new Install Problem Pin
ThoWeib22-Dec-03 22:54
ThoWeib22-Dec-03 22:54 
GeneralRe: new Install Problem Pin
Michael A. Barnhart23-Dec-03 4:24
Michael A. Barnhart23-Dec-03 4:24 
GeneralHelp with Datasets! Pin
Emilio Guijarro20-Dec-03 5:11
Emilio Guijarro20-Dec-03 5:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.