purserj Fri, 18 Feb 2005 17:18:09 -0800
The solution I found was to create an instance of the HttpRuntime and then call the function from the new instance.
ie: instead of HttpRuntime.UnloadServer(); HttpRuntime htrt = new HttpRuntime(); htrt.UnloadServer(); James Purser