cagin
cagin

Reputation: 5920

Can I set application pool in webconfig?

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

Answers (2)

Igor  Lozovsky
Igor Lozovsky

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

Yiğit Yener
Yiğit Yener

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

Related Questions