代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Asp.Net
】
新建站点,删除站点函数
作者:
xqf222
/ 发布于
2014/2/25
/
424
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站点查询代码 //// <summary> /// Get and return a new website ID of specify host /// </summary> /// <returns>the smallest new website ID of the host</returns> 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
试试其它关键字
新建站点
同语言下
.
gzip压缩
.
实现http多线程断点续传下载文件
.
实现多线程断点续传下载大文件
.
生成字符串的 CheckSum
.
根据 UserAgent 获取浏览器的类型和版本
.
根据 Agent 判断是否是智能手机
.
隐藏手机号中间四位为*方法
.
合并图片(二维码和其他图片合并)
.
ASP.NET CORE中判断是否移动端打开网页
.
ASP.NET(C#)实现页面计时(定时)自动跳转
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
xqf222
贡献的其它代码
(
82
)
.
VB编写的登录局域网内的sql2000数据库服务器
.
ASP .NET登录界面用户验证码
.
VB操作ACCESS数据库
.
批量发送邮件程序
.
批量抓取网页代码中的HTTP和邮件地址
.
禁止站外提交参数测试
.
FTP网站文件到本地的
.
调用对应的应用程打开文件
.
抓取邮件内容解析
.
保存文件时候的弹出选择要保存的文件夹带新建文件夹效
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3