vote up 2 vote down star

How can I restart IIS 6 's defaultAppPool when I click a button of a webform page in an asp.net web app.

I tried to use HttpRuntime.UnloadAppDomain(); but it can not restart the IIS 6 's defaultAppPool.

flag

2 Answers

vote up 0 vote down check

If you need to restart the ASP.NET application; just write some blank lines at the end of web.config; it will automatically restart the ASP.NET application. This technique doesnt require special/administrative permissions!

link|flag
This will restart the AppDomain for the site but not the worker process. You need elevated rights and trust to be able to restart an Application Pool's worker process. – Kev Sep 18 at 17:49
vote up 3 vote down

Restart IIS application pool from ASP.NET page

link|flag
When I try this, it occurs the error: HRESULT:0x80070005 E_ACCESSDENIED System.Reflection.TargetInvocationException System.UnauthorizedAccessException – Mike108 Sep 7 at 16:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.