Click here to Skip to main content
15,895,740 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

could any one explain me about

1> connection pooling

2> applicaion pooling in asp.net


Thanks in Advance

srinivas
Posted

1 solution

Try
ADO.NET Connection Pooling at a Glance[^]
Connection Pooling and the "Timeout expired"[^]
Understanding Connection Pooling in .NET[^]

Application Pooling :- This is one of the most important things that you should create for your own application in a production environment. Application Pools are used to separate sets of IIS Worker Processes that share the same configuration. Application Pools enable us to isolate our web application for better security, reliability, and availability. The Worker Process serves as the process boundary that separates each Application Pool, so that when one Worker Process or application has an issue or recycles, other applications or Worker Processes are not affected.
Reference Link :- CP Article-[Debug your ASP.NET Application while Hosted on IIS][^]
 
Share this answer
 
v2
Comments
Uday P.Singh 13-Oct-11 11:37am    
nice links my 5!
RaviRanjanKr 13-Oct-11 11:39am    
Thanks Uday.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900