The Ascending Iterator

  • My Github repos
  • My LinkedIn profile
  • My Facebook profile
  • E-Mail me

Programming

  • In the memory of an Icon
  • Telescopic text
  • Remember, ActionScript is ECMAScript
  • Hiring is a first class responsibility
  • The power of LINQ : The Aggregate method
  • Legacy applications and Age of Empires

Mathematics

  • Gödel, Escher, Bach, Me and Reddit

I Learnt Something Today

  • ASP.NET Session State gotcha

ASP.NET Session State gotcha

I learnt something today. ASP.NET sessions are dangerous. I would be very wary of using ASP.NET for web development and I’d at least disable the Session State.

I learnt that if a browser sends two requests to an ASP.NET website and if both of them belong to the same session (have the same SessionID) then ASP.NET will not execute them concurrently. The second request is executed only after the first one is done executing. For more information, check out the section called Concurrent Requests and Session State. This essentially makes your application single threaded for a given session.

Only one at a time
Only one at a time