protected void btnRecycle_Click(object sender, EventArgs e)
{
ServerManager mgr = new ServerManager();
System.Collections.IEnumerator ie = mgr.ApplicationPools.GetEnumerator();
while (ie.MoveNext())
{
ddlApplicationPool.Items.Add(((Microsoft.Web.Administration.ApplicationPool)(ie.Current)).Name);
}
}
Error:
Retrieving the COM class factory for component with CLSID {2B72133B-3F5B-4602-8952-803546CE3344} failed due to the following error: 80040154 Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)).