views:

30

answers:

1

I'm using the following code to start website when it is stopped.

DirectoryEntry DE = new DirectoryEntry(string.Format("IIS://localhost/W3SVC/{0}", siteID));
if ((Int32)DE.InvokeGet("ServerState") != MD_SERVER_STATE_STARTED)
     DE.Invoke("Start");

But it works only if the website is stopped and not works if it is PAUSED. How can i start the website if it is in the PAUSED state?

+1  A: 

To resume a site from the Paused state you should invoke the Continue method.

Kev