主页 > 编程资料 > C# >
发布时间:2015-09-26 作者:网络 阅读:202次

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Windows.Forms.Design;
using System.DirectoryServices;
using System.Reflection;
using System.Text.RegularExpressions;

//添加站点代码

private void button2_Click(object sender, System.EventArgs e)
  {
   
   
   string newServerComment=textBox1.Text;   
   string newServerIP=textBox2.Text;
   string newServerPort=textBox3.Text;   
   string newServerPath=textBox4.Text;
   string newServerHeader=textBox5.Text;   
   //NewWebSiteInfo siteInfo=new NewWebSiteInfo(hostIP,portNum,descOfWebSite,commentOfWebSite,webPath);
   NewWebSiteInfo siteInfo=new NewWebSiteInfo(newServerIP,newServerPort,newServerHeader,newServerComment,newServerPath);
   string entPath = "IIS://localhost/w3svc";
   DirectoryEntry rootEntry = new DirectoryEntry(entPath);


   string newSiteNum = GetNewWebSiteID();

   DirectoryEntry newSiteEntry = rootEntry.Children.Add(newSiteNum, "IIsWebServer");

   newSiteEntry.CommitChanges();

   newSiteEntry.Properties["ServerBindings"].Value = siteInfo.BindString;

   newSiteEntry.Properties["ServerComment"].Value = siteInfo.CommentOfWebSite;

   newSiteEntry.CommitChanges();

   DirectoryEntry vdEntry = newSiteEntry.Children.Add("root", "IIsWebVirtualDir");

   vdEntry.CommitChanges();

   vdEntry.Properties["Path"].Value = siteInfo.WebPath;

   vdEntry.CommitChanges();
   
    

   MessageBox.Show("站点"+siteInfo.CommentOfWebSite+"创建完成");
   

  }

//IIS站点查询代码
  ////


  /// Get and return a new website ID of specify host
  ///

  /// the smallest new website ID of the host
  public string GetNewWebSiteID()
  {
   ArrayList idList = new ArrayList();
   string tmpStr;

   string entryPath = "IIS://localhost/W3SVC";
   DirectoryEntry entry = GetDirectoryEntry(entryPath);
  
   foreach (DirectoryEntry child in entry.Children)
   {
    if (child.SchemaClassName == "IIsWebServer")
    {
     tmpStr = child.Name.ToString();
     idList.Add(Convert.ToInt32(tmpStr));
    }
   }

   idList.Sort();

   int i = 1;
   foreach (int id in idList)
   {
    if (i == id)
    {
     i++;
    }
   }

   return i.ToString();
  }

//删除站点代码

private void button3_Click(object sender, System.EventArgs e)
  {
   string newServerComment=textBox1.Text;   
   string newServerIP=textBox2.Text;
   string newServerPort=textBox3.Text;   
   string newServerPath=textBox4.Text;
   string newServerHeader=textBox5.Text;
   string newServerHost=textBox6.Text;

   string siteNum = GetWebSiteNum(newServerComment);
   string rootPath = "IIS://localhost/w3svc";
   string siteEntPath =rootPath+"/"+siteNum; 
   DirectoryEntry rootEntry = GetDirectoryEntry(rootPath);
   DirectoryEntry siteEntry = GetDirectoryEntry(siteEntPath);
   rootEntry.Children.Remove(siteEntry);
   rootEntry.CommitChanges();
   MessageBox.Show("站点 "+newServerComment+" 删除完毕");
  }

  //根据站点名称获取站点标识符
  #region 获取一个网站编号的方法
  public string GetWebSiteNum(string siteName)

  {

   Regex regex = new Regex(siteName);
   string tmpStr;
   string entPath = "IIS://localhost/w3svc";
   DirectoryEntry ent =new DirectoryEntry(entPath); 

   foreach(DirectoryEntry child in ent.Children)

   {
    if(child.SchemaClassName == "IIsWebServer")
    {
     if(child.Properties["ServerBindings"].Value != null)
     {
      tmpStr = child.Properties["ServerBindings"].Value.ToString();
      if(regex.Match(tmpStr).Success)
      {
       return child.Name;
      }
     }

     if(child.Properties["ServerComment"].Value != null)

     {
      tmpStr = child.Properties["ServerComment"].Value.ToString();
      if(regex.Match(tmpStr).Success)
      {
       return child.Name;
      }
     }
    }
   }
   return "";
   
  }
  #endregion

 

#region 新IIS站点信息结构体

  public struct NewWebSiteInfo
  {
   private string hostIP;   // The Hosts IP Address

   private string portNum;   // The New Web Sites Port.generally is "80"

   private string descOfWebSite; // 网站表示。一般为网站的网站名。例如"www.dns.com.cn"

   private string commentOfWebSite;// 网站注释。一般也为网站的网站名。

   private string webPath;   // 网站的主目录。例如"e:\tmp"

   public NewWebSiteInfo(string hostIP, string portNum, string descOfWebSite, string commentOfWebSite, string webPath)

   {

    this.hostIP = hostIP;

    this.portNum = portNum;

    this.descOfWebSite = descOfWebSite;

    this.commentOfWebSite = commentOfWebSite;

    this.webPath = webPath;

   }


   public string BindString

   {

    get
    {
     return String.Format("{0}:{1}:{2}", hostIP, portNum, descOfWebSite);

    }

   }

   public string CommentOfWebSite  {get{return commentOfWebSite;}}

   public string WebPath  {get{return webPath;}}

  }

  #endregion


<> <>
关键字词: