According to this same question, the answer is pretty obvious: without .Net pooling on, the website has to re-connect to the database every time (every Postback time?).
However, there has to be other consequences, such as SQL memory leaks through over use of opening/closing the database without buffering?
With pooling turned OFF, does ASP.net have to recompile the ASPx/C files everytime? Plus reload all dll
s?
If there are no direct and "dangerous" consequences, then I'd rather have a new connection each time and give the user better consistency of data directly from the database and not have to rely on buffers that could get corrupted. I just made that up - sorry, but really what are the real dangers?
Thank you