我有一個診斷網頁,我需要確保該網站以編程方式在ASP.NET中以正確的App Pool版本安裝。IIS7以編程方式在ASP.NET中獲取應用程序池版本
我正在運行IIS 7.5在Windows 7下,但代碼也必須在Windows Server 2008 R2下運行。
我知道如何與這兩個途徑獲得的應用程序池名稱:
// First way to do it
string name = System.Environment.GetEnvironmentVariable("APP_POOL_ID", System.EnvironmentVariableTarget.Process);
// Second way to do it
string name = HttpContext.Current.Request.ServerVariables["APP_POOL_ID"];
但是,從那裏,我不知道如何讓應用程序池的版本。我看了很多網頁和論壇,但我無法找到答案。 任何人都可以提供幫助嗎?
** **充分***診斷網頁***? – Kiquenet