Reputation: 5920
I use IIS 7.0 and I want to know how if I can set Appliacation pool in web config file.
Upvotes: 4
Views: 10225
Reputation: 2415
Use Pooling=False;
in your connection string to disable pooling in your app. If you want to configure it, you can add something like this Max pool size=200; Min poolsize=0
.
More info about pooling you can find here...
Upvotes: -3
Reputation: 5986
I don't think this is possible. Choosing the application pool for your application is a "Setup" issue, rather then a "configuration".
Upvotes: 7