修改IIS目錄的Asp.Net版本

來源:互聯網
上載者:User
asp.net|iis

目前已經有很多介紹建立IIS虛擬目錄的文章了,我個人也翻譯過一篇.
但是這些文章只介紹如何來建立、刪除一個虛擬目錄,卻沒有介紹如何修改一個虛擬目錄的Asp.Net版本.如果機子上裝有兩個版本以.Net FrameWork,在建立時將使用IIS中預設使用的版本,而預設的版本又不是你需要的,那怎麼辦?在部署後手動修改?還是在部署時直接使用程式修改呢?
本文將介紹一個方法用於修改虛擬目錄的Asp.Net版本.

ASP.NET IIS 註冊工具

使用ASP.NET IIS 註冊工具 (Aspnet_regiis.exe)可以方便地更新 ASP.NET 應用程式的指令碼映射,使其指向與該工具關聯的 ASP.NET ISAPI 版本.
關於ASP.NET IIS 註冊工具的更詳細的內容,請參考MSDN.
在控制台上我們使用下面的命令可以修改一個虛擬目錄的Asp.Net版本:

Aspnet_iis.exe –s path

我們知道了如何來修改一個虛擬目錄的版本,現在的問題就是如何使用程式來實現它了.

以下代碼基於.Net FrameWork 2.0 在Windows Xp sp2中編譯通過:


//建立一個虛擬目錄
            DirectoryEntry dirRoot = new DirectoryEntry("IIS://localhost/W3SVC/1/Root");
            DirectoryEntries dirs = dirRoot.Children;
            DirectoryEntry virtualDir = dirs.Add("VirtualChange", dirRoot.SchemaClassName);
            object[] objs = new object[] { true };
            virtualDir.Invoke("AppCreate", objs);
            virtualDir.Properties["AppFriendlyName"][0] = "VirtualChange";
            virtualDir.Properties["Path"].Value = "C:\\VirtualChange";
            virtualDir.CommitChanges();
            //啟動aspnet_iis.exe程式
            string fileName = Environment.GetEnvironmentVariable("windir") + @"\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe";
            ProcessStartInfo startInfo = new ProcessStartInfo(fileName);
            //處理目錄路徑
            string path = virtualDir.Path.ToUpper();
            int index = path.IndexOf("W3SVC");
            path = path.Remove(0, index);
            //啟動aspnet_iis.exe程式,重新整理教本映射
            startInfo.Arguments = "-s " + path;
            startInfo.WindowStyle = ProcessWindowStyle.Hidden;
            startInfo.UseShellExecute = false;
            startInfo.CreateNoWindow = true;
            startInfo.RedirectStandardOutput = true;
            startInfo.RedirectStandardError = true;
            Process process = new Process();
            process.StartInfo = startInfo;
            process.Start();
            process.WaitForExit();
            string errors = process.StandardError.ReadToEnd();
            if (errors != string.Empty)
                throw new Exception(errors);
            Console.WriteLine(process.StandardOutput.ReadToEnd());

 



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.